如何在 Solr 中进行 IN 查询?

发布于 2024-11-06 12:49:15 字数 290 浏览 1 评论 0原文

我的文档具有多值字段“sharedTo”,其中包含文档共享到的组。现在我想查找至少与给定组列表之一共享的所有文档。例如,我想查找共享给“foo”组或“bar”组或两者共享的所有文档。目前,我正在构建这样的查询:

sharedTo:"foo" OR sharedTo:"bar"

对于每个组,我只需添加一个新的 OR 查询部分。这是可行的,但是我想知道是否有一种更有效的方法可以做到这一点,例如

sharedTo IN ('foo', 'bar')

i'm having documents with a multivalued field "sharedTo" which contains the groups that the document is shared to. Now I want to find all documents that are shared to at least one of a list of given groups. E.g. I want to find all documents that are shared to the group "foo" or the group "bar" or both. Currently I'm building a query like this:

sharedTo:"foo" OR sharedTo:"bar"

For each group I just add a new OR query part. This works, however I wonder if there is a more efficient way of doing this like a

sharedTo IN ('foo', 'bar')

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

二智少女猫性小仙女 2024-11-13 12:49:15

如果您的默认运算符是 OR,那么您只需将查询指定为

sharedTo:('foo' 'bar')

如果您的默认运算符是 AND,那么您必须这样做: sharedTo:(foo 或 bar)

if your default operator is OR, then you can just give the query as

sharedTo:('foo' 'bar')

If your default operator is AND, then you'll have to do it like this: sharedTo:(foo OR bar)

小兔几 2024-11-13 12:49:15

如果您使用 SolrJ 作为客户端,您的查询将如下所示:

fq=sharedTo:("foo" OR "bar")

希望这有帮助

If you're using SolrJ as client your query would look like as follows:

fq=sharedTo:("foo" OR "bar")

Hope this helps

雨的味道风的声音 2024-11-13 12:49:15

上述解决方案对我不起作用。但这种语法确实是

column_name:+(value1 value2)

http://harmssite.com/2012/09/solr-query-for-mimicking-sql-in-operator-functionity/

The above solution did not work for me. But this syntax did

column_name:+(value1 value2)

http://harmssite.com/2012/09/solr-query-for-mimicking-sql-in-operator-functionality/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文