如何按相关性和 Lucene.net 中的其他字段对搜索结果进行排序

发布于 2024-11-08 21:22:51 字数 430 浏览 4 评论 0原文

我需要按相关性另一个字段对搜索结果进行排序。

我需要做类似的事情:

using Lucene.Net.Search;

SortField[] fields = new[] { SortField.SCORE, new SortField("customField") };
Sort sort = new Sort(fields);

IndexSearcher searcher = GetSearcher();
Hits = searcher.Search(query, sort);

除了 SortField.SCORE 是一个整数常量,而不是 SortField

Lucene.net 版本 2.3.1.3。

有人遇到过这个吗?

I have a requirement to sort search results by relevance and another field.

I need to do something similar to this:

using Lucene.Net.Search;

SortField[] fields = new[] { SortField.SCORE, new SortField("customField") };
Sort sort = new Sort(fields);

IndexSearcher searcher = GetSearcher();
Hits = searcher.Search(query, sort);

Except, SortField.SCORE is an integer constant, not a SortField.

Lucene.net version 2.3.1.3.

Has anyone come across this?

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

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

发布评论

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

评论(1

飘逸的'云 2024-11-15 21:22:51

找到了这个问题的答案:

SortField.FIELD_SCORE

不知道我是如何或为什么错过这个的......

Found an answer to this:

SortField.FIELD_SCORE

Not sure how or why I missed this...

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