特定单词的 Solr 方面计数
我正在尝试查找 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
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