yjiang's cake

全文检索 `xunsearch` 简记

配置文件

    project.name = news
    project.default_charset = utf-8
    server.index = 192.168.219.129:8383
    server.search = 192.168.219.129:8384

    [pid]
    type = id

    [title]
    type = title

    [category_id]
    index = self
    type = string
    tokenizer = split(,)

    [new_cat_id]
    index = self
    type = string
    tokenizer = full

参考xunsearch项目配置详解

  • type [字段类型], 为numeric时, 仅用于区间检索, 否则使用string
  • index [索引方式], 为self时, 可以用 field:xxx 来检索指定的field字段
  • tokenizer [分词器], 为full时, 字段作为一个整体检索词(例如ID); 为split(,)时, 将按照,分割内容

php下使用composer安装及使用

安装

 composer require hightman/xunsearch

引用

require_once __DIR__ . '/vendor/autoload.php';

$xs = new XS('./test/test.ini');
//创建索引对象
$index = $xs->index;
//创建搜索对象
$search = $xs->search;

清空索引

cli 方式

    ./util/Indexer.php --clean <project_name>

php

    //创建索引对象$index后
    $index->clean();

mac的telnet

brew install inetutils

archlinux手动链接网络

启用无线网卡

ip link set dev wlan0 up

生成wpa配置文件

wpa_passphrase <SSID> <paasword>  > wlan0.conf

连接

wpa_supplicant -i wlan0 -c wlan0.conf

更多

#自动获取ip
dhcpcd wlan0
#查看接入点
iw dev wlan0 scan |less
#启用网卡
ip link set dev wlan0 up
#关闭网卡
ip link set dev wlan0 down
#扫描可用热点
iw dev wlan0 scan

参考

brew upgrade 导致的php扩展失效

brew reinstall <modules> --build-from-source

php curl upload file

if (function_exists('curl_file_create')) { // php 5.5+
  $cFile = curl_file_create($file_name_with_full_path);
} else { // 
  $cFile = '@' . realpath($file_name_with_full_path);
}
$post = array('extra_info' => '123456','file_contents'=> $cFile);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$target_url);
curl_setopt($ch, CURLOPT_POST,1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
$result=curl_exec ($ch);
curl_close ($ch);

在php5.5以后, 需要使用 curl_file_create 来创建Curl文件对象

Copyright © 2016 yjiang's cake

返回顶部