我正在通过searchkick使用Elasticsearch
我有一个名为“详细信息”的字段,使用“标准”分析器进行了分析……现在就像在Google中一样,我们进行"several words"
搜索以获取完全匹配的内容..我们可以在searchkick中进行相同的操作吗?我不是在寻找fields: [{detail: exact}, name]
,因为那样它就可以匹配整篇文章……只是整个术语而不是单个单词。
最佳答案
您需要使用match_phrase: true
。您可以在 flex 搜索documentation.中看到它
但是此功能尚未在searchkick中合并。仅供引用:github pull request
我认为您可以使用Monkey-Patch为项目添加功能。
关于ruby-on-rails - Searchkick/Elasticsearch完全匹配,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29320142/