sphinx 针对tedfield搜索

混江龙づ霸主 提交于 2020-08-09 12:14:43

query = "(user can be admin)"
  -> check all fields for the given words. If all words are found in a combination of any
  fields, document is a match.

query = @(title,content) (user can be admin)"
  -> check title and content fields for the given words. If all words are found in a
  combination of title and content, document is a match.

> Where I want all the words (user can be admin) should be in title or content.

The query you want:
query = "(@title user can be admin) | (@content user can be admin)"










实测有效!

 

摘自:http://sphinxsearch.com/forum/view.html?id=2890

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!