本文介绍了如何使用Solr/Lucene搜索值列表?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
给出以下查询:
(field:value1 OR field:value2 OR field:value3 OR ... OR field:value50)
可以将其分解为较不冗长的内容吗?基本上,我有数百个类别ID,并且我需要搜索大量类别ID下的项目(一次20-50).在MySQL中,我只会使用field IN(value1, value2, value3)
而不是(field = value1 OR field = value2 etc...)
.
Can this be broken down into something less verbose? Basically I have hundreds of category IDs, and I need to search for items under large groups of category IDs (20-50 at a time). In MySQL, I'd just use field IN(value1, value2, value3)
rather than (field = value1 OR field = value2 etc...)
.
Solr/Lucene是否有更简单的方法?
Is there a simpler way for Solr/Lucene?
推荐答案
使用
field:(value1 value2 value3)
或者如果您的默认运算符为AND,则使用
or if your default operator is AND then use
field:(value1 OR value2 OR value3)
这篇关于如何使用Solr/Lucene搜索值列表?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!