jpountz opened a new issue, #15519: URL: https://github.com/apache/lucene/issues/15519
Currently, MAXSCOREBulkScorer always applies filters in parallel with essential clauses (by intersecting the filter with a heap containing essential clauses in a leap frog fashion). When the sum of costs of essential clauses is less than the cost of the filter, it would likely be more efficient to "post filter" hits of essential clauses, ie. pull hits of essential clauses into a `DocAndScoreBuffer` and then remove hits from this buffer that don't match the filter. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
