jpountz commented on PR #14357:
URL: https://github.com/apache/lucene/pull/14357#issuecomment-2727629320
In case you missed it, `BooleanScorer` had optimizations recently that make
it hard to beat by `DisjunctionScorer` when clauses are `PostingsEnum`s:
- `DocIdSetIterator#intoBitSet` helps impls optimize loading matches into
bit sets, in the case of `PostingsEnum` through (auto) vectorization
(annotation [`HR`](https://benchmarks.mikemccandless.com/CountOrHighHigh.html))
- Dense blocks of postings are stored as bit sets, further speeding up
OR-ing postings into a bit set ([annotations `HW` and
`HX`](https://benchmarks.mikemccandless.com/CountOrHighHigh.html))
--
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]