Apache Solr - 过滤器查询中的 OR
是否可以使用过滤器查询(使用apache Solr)搜索属于少数类别之一的项目,例如“计算机”或“电话”类别中的项目
当我想搜索计算机和电话类别中的项目时,我输入:
select/?q=...&fq=cat:computers&fq=cat:phones
但是可以使用OR
代替AND
吗?
Is it possible to search (with apache Solr) for items which are in one of few categories using filter query, e.g. items in category 'computers' OR 'phones'
When I want to search for items in category computers AND phones I type:
select/?q=...&fq=cat:computers&fq=cat:phones
but it is possible to use OR
instead of AND
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
You can use
过滤器查询只是一个查询——复杂程度随您的喜好而定。因此,您当然可以建立一个查询,例如
......或其他什么。
过滤器查询和普通查询之间的唯一区别(除了内存和缓存问题,您可能还需要考虑)是过滤器查询根本不影响相关性分数。但就复杂性而言,你可以做任何你想做的事。
A filter query is just a query -- as complex as you'd like. So, you can certainly build up a query, e.g.,
...or whatever.
The only difference between a filter query and a plain-old query (besides memory and caching issues, which you might want to also think about) is that a filter query doesn't affect the relevancy scores at all. But in terms of complexity, you can do whatever you want.