特定单词的 Solr 方面计数

发布于 2024-12-03 08:08:31 字数 257 浏览 2 评论 0原文

我正在尝试查找 Solr 实现中特定字段的方面计数。

我想知道是否有一种方法可以获取该字段中仅几个特定单词的构面计数?

例如,

字段名称=产品

值可以是camera<10>; 、电视<20> 、DVD<20> ,CD <30>

现在是否可以只获取电视和 DVD 的面数?

我尝试使用facet.prefix,但它不适用于多个值。

——杰伊

I am trying to find the facet count for a particular field in my Solr Implementation.

I was wondering if there is a way to get facet counts for only a few specific words in that field?

For example,

field name = product

values can be camera <10> , tv <20> , DVD <20> , CD <30>

Now is it possible to get the facet counts of only tv and DVD?

I tried using facet.prefix, but it does not work for multiple values.

--Jay

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

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

发布评论

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

评论(1

终难愈 2024-12-10 08:08:31

Solr 支持任意查询分面,如此处所述。

因此,在您的情况下,您可以通过以下查询仅获取电视和 DVD 的方面计数:
http://localhost:8983/solr/select?q=*:*&facet=true&facet.query=product:tv&facet.query=product:DVD

Solr support faceting by arbitrary queries as described here.

So, in your case you could get facet counts for only tv and DVD by the following query:
http://localhost:8983/solr/select?q=*:*&facet=true&facet.query=product:tv&facet.query=product:DVD

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