Luca Cavanna created LUCENE-10486: ------------------------------------- Summary: Avoid unnecessary overhead in TopScoreDoc and TopField collector manager Key: LUCENE-10486 URL: https://issues.apache.org/jira/browse/LUCENE-10486 Project: Lucene - Core Issue Type: Improvement Reporter: Luca Cavanna
TopScoreDocCollector and TopFieldCollector expose a createSharedManager method that returns a collector manager for concurrent search, which relies on a shared global counter for hits counting as well as a shared max score accumulator. As part of LUCENE-10002 we are going to deprecate the ability to search providing a collector, in favour of using a corresponding collector manager. The above mentioned shared collector managers are great for concurrent searches, yet they add overhead when search is single threaded, which can be the case despite a collector manager is used. That is the case when an executor is not set to the index searcher, or when there's only one slice to be searched. We could adapt the hits threshold checker as well as the max score accumulator depending on whether a search is effectively executed by multiple threads or not. An additional idea along the same lines could be to introduce a new hits threshold checker for the case when totalHitsThreshold is set to Integer.MAX_VALUE, which does no counting at all. This could be safely used both in the single threaded as well as in the concurrent scenario. -- This message was sent by Atlassian Jira (v8.20.1#820001) --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org