gpt4 book ai didi

Lucene .NET 结果子集

转载 作者:行者123 更新时间:2023-12-01 15:25:51 25 4
gpt4 key购买 nike

我正在使用 Lucene .NET假设我只想返回从结果 100 开始的 50 个结果,我该如何处理呢?我搜索了文档但没有找到任何东西。我有什么遗漏的吗?

最佳答案

您的代码应如下所示:

TopDocs topDocs = indexSearcher.Search(query, null, 150);
for(int i=100, i<min(topDocs.totalHits,150); i++) {
Document doc = indexSearcher.doc(topDocs.scoreDocs[i]);

// Do something with the doc
}

不要使用Hits类。它效率低下且已被弃用。

关于Lucene .NET 结果子集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1242333/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com