Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用3.5.0Lucene 版本。
3.5.0
我正在这样寻找。
final TopDocs docs = searcher.search(finalQuery, resultSize);
但我不想指定结果大小;相反,我想要所有匹配的结果。
其中一种方法是将索引中的记录总数作为 resultSize。
有没有其他方法可以做到这一点?
由于 Lucene 内部的处理方式,使用足够大的resultSize. 如果您执行其他任何操作,您将不会节省任何内存,并且结果以内存优化的方式返回,实际上没有加载任何文档。
resultSize