我正在使用
Sphinx Search.除了一个问题之外,它对我来说工作正常:我需要排除某些特定字段不包含单词的条目.
在MysqL中看起来像这样的东西:
SELECT * FROM table WHERE yescolumn = 'query' AND othercolumn not like '%keyword%'
您可以使用Sphinx的扩展查询语法来选择要搜索的字段.尝试通过Sphinx运行查询,如下所示:
原文链接:https://www.f2er.com/php/130377.html@yescolumn query @othercolumn -keyword
因此,在PHP页面中,您可能有一个指向名为$sphinx的Sphinx数据库的链接:
$sphinx->SetMatchMode(SPH_MATCH_EXTENDED2); $results = $sphinx->Query('@yescolumn query @othercolumn -keyword');
更多信息:http://www.sphinxsearch.com/docs/current.html#searching