Apache Solr 使用 OR 进行多短语查询
我正在使用带有 dismax 的 Apache Solr 1.4,并且我正在尝试执行以下两个短语的搜索:
“call number” “杜威十进制”
我想匹配包含这些短语中的任何一个的文档。如果我单独搜索这些短语而不是一起搜索,我会得到匹配项。
我尝试过这样的查询:
title:("call number" OR "dewey decimal")
title:["call number" TO "dewey decimal"]
有什么想法吗?
I am using Apache Solr 1.4 with dismax, and I am trying to execute a search for the following two phrases:
"call number"
"dewey decimal"
I want to match documents that contain either of those phrases. I get matches if I search for those phrases separately, but not together.
I tried queries like:
title:("call number" OR "dewey decimal")
title:["call number" TO "dewey decimal"]
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否还测试了以下查询?
Did you also test the following query ?