如何用C#对Lucene.net中的结果进行排序?
我正在向 lucene 添加特殊枚举以进行相关搜索。我如何对具有特定枚举值的结果进行排序。
假设我添加了“Poor Medium Best”,并且我需要首先获得最好的结果,然后我如何在 Lucene.net 中做到这一点。
有什么方法可以在 Lucene.net 中做到这一点
i am adding special enum to lucene for relevant the search. how i can sort the result who have a specific enum value.
suppose i add Poor moderate Best and i need to get best first in result then how i can do this in Lucene.net.
any way to do this in Lucene.net
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Lucene 确实有自己的排序。查看命名空间
Lucene.Net.Search.Sort
。下面是我按 DateOfMessage 排序的示例。Lucene does have its own Sort. Look at the Namespace
Lucene.Net.Search.Sort
. Below is an example where I am sorting by DateOfMessage.您可以使用“SimpleFacetedSearch”将结果分类为差、中等、最佳
https://cwiki.apache.org/confluence/display/LUCENENET/Simple +分面+搜索
You can use "SimpleFacetedSearch" to categorize the results as poor, moderate, best
https://cwiki.apache.org/confluence/display/LUCENENET/Simple+Faceted+Search