php调用时使用了
$sphinx->SetMatchMode("SPH_MATCH_ANY");
$result = $sphinx->query("$name","test2");
搜CSI这个词,搜出三个结果
["total"]=>
string(1) "3"
["words"]=>
array(1) {
["csi"]=>
array(2) {
["docs"]=>
string(1) "3"
["hits"]=>
string(1) "3"
}
}
但是我用CSI ABC去搜
["total"]=>
string(1) "0"
array(2) {
["csi"]=>
array(2) {
["docs"]=>
string(1) "3"
["hits"]=>
string(1) "3"
}
["abc"]=>
array(2) {
["docs"]=>
string(1) "0"
["hits"]=>
string(1) "0"
}
}
貌似是分出词了,但是搜索结果为0,为何呢