solr 字段折叠和最大 group.limit
我正在使用 Solr 3.4 和 FieldCollapsing。我想使用 FieldCollapsing 对所有消息进行分组。
默认情况下,每个组仅包含 1 条消息。
我可以通过更改参数group.limit
来修改每组的文档数量。 这对于将所有可用消息分组到特定组来说有点不方便。
有没有办法将group.limit
设置为无限?
当前的解决方法是将group.limit
设置为非常高的值,这不是一个令人满意的解决方案。
I'm using Solr 3.4 and FieldCollapsing. I would like to group all messages using FieldCollapsing.
Per default, every group contains only 1 message.
I can modify the numbers of documents per group by changing the Parameter group.limit
.
That's a bit inconveniently for grouping all available messages to specific groups.
Is there a way to set group.limit
to infinite?
The current workaround is to set group.limit
to an very high value, which isn't an satisfying solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
group.limit
设置为-1
。然后你将获得每组无限的文档。You can set
group.limit
to-1
. Then you will get infinite documents per group.