Facet 多值字段(Solr 支持的 Tag Cloud pt II)

发布于 2024-11-05 08:46:43 字数 1236 浏览 1 评论 0原文

这与此相关:Solr 驱动的标签云 然而,我决定创建另一个问题,因为它与第一个问题的原始范围不同。 事情是这样的,我已经成功地为标签云的多个单词索引了一个多值字段:

    <arr name="words">
<str>builders_NNS</str>
<str>builders_NNS</str>
<str>buildings_NNS</str>
<str>buildings_NNS</str>
<str>construction_NN</str>
<str>construction_NN</str>
<str>green_JJ</str>
<str>green_JJ</str>
</arr>

但是当我使用简单的参数来处理查询时: &facet=true&facet.field=words&facet.mincount=1

它无法正确地对它们进行分面,它不会对值求和...我是否需要发送另一个额外的参数因为它是一个多值字段?一旦我应用分面,Solr 的响应:

<lst name="facet_counts">
<lst name="facet_queries"/>
<lst name="facet_fields">
<lst name="words">
<int name="builders_NNS">1</int>
<int name="buildings_NNS">1</int>
<int name="construction_NN">1</int>
<int name="green_JJ">1</int>
</lst>
</lst>
</lst>

我的字段定义如下:

<field name="words" type="string" indexed="true" stored="true" multiValued="true" />

我正在使用 Solr 1.4,谢谢!

This is related to this: Solr powered Tag Cloud
However i decided to create another question since it's different from the original scope of the first question.
Here's the deal, I ve managed to index a multivalued field with multiple words for a tag cloud:

    <arr name="words">
<str>builders_NNS</str>
<str>builders_NNS</str>
<str>buildings_NNS</str>
<str>buildings_NNS</str>
<str>construction_NN</str>
<str>construction_NN</str>
<str>green_JJ</str>
<str>green_JJ</str>
</arr>

But when I facet on the query with simple parameters:
&facet=true&facet.field=words&facet.mincount=1

It fails to facet them correctly, it doesn't sum up the values... Do i need to send another extra parameter since it's a multivalued field? Response from Solr once i apply the faceting:

<lst name="facet_counts">
<lst name="facet_queries"/>
<lst name="facet_fields">
<lst name="words">
<int name="builders_NNS">1</int>
<int name="buildings_NNS">1</int>
<int name="construction_NN">1</int>
<int name="green_JJ">1</int>
</lst>
</lst>
</lst>

My field is defined as follows:

<field name="words" type="string" indexed="true" stored="true" multiValued="true" />

And i'm using Solr 1.4, Thanks!

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

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

发布评论

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

评论(1

又爬满兰若 2024-11-12 08:46:43

在这里回答我自己的问题:
Solr 无法(至少是 1.4 版,我还没有迁移到 3.2 并看看是否可能)对同一文档中重复的多值字段进行分面,但它可以正确地对来自不同多值字段的重复值进行分组。因此,我采取的方法是不可能的(目前还)。

Answering my own question in here:
Solr is not capable (at least version 1.4, I haven't migrated to 3.2 yet and see if it's possible) to facet multivalued fields that are repeated in the same document, however it correctly groups repeated valued from different multivalued fields. Therefore the approach I was taking isn't possible (just yet).

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