对多值分面搜索的结果进行排序
使用 bobo-browse MultiValueFacetHandler 来收集多值分面结果,如何按每个方面得分最高的文档?
例如,如果:
- 文档 d1 具有构面 f1 和 f2,得分 3.5
- 文档 d2 具有构面 f2 和 f3,得分 4.7
- 文档 d3 具有构面 f1 和 f3,得分 0.9
- 文档 d4 具有构面 f2 和 f3,得分 2.2
- 文档 d5 具有构面 f1得分为 3.4
- 文档 d6 具有方面 f3 且得分为 5.4
我希望这些结果为这个顺序:
- f3,f2,f1
谢谢。
Using bobo-browse MultiValueFacetHandler to gather multi-valued faceted results, how do I sort these facets by the top-scoring document in each facet?
For example, if:
- Document d1 has facets f1 and f2 and score 3.5
- Document d2 has facets f2 and f3 and score 4.7
- Document d3 has facets f1 and f3 and score 0.9
- Document d4 has facets f2 and f3 and score 2.2
- Document d5 has facet f1 and score 3.4
- Document d6 has facet f3 and score 5.4
I would expect these results in this order:
- f3, f2, f1
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这个问题没有直接的答案。文档没有足够的信息来关联不同的字段,因此唯一简单的解决方案是生成派生字段,其值是其他字段值的串联,并使用它来构建分面。
There is no straightforward answer to this question. Documents don't have enough information to associate different fields, so only easy solution is to generate derived fields whose value is a concatenation of other field values and use this to build facets.