jpountz opened a new pull request, #14133:
URL: https://github.com/apache/lucene/pull/14133

   Bit sets can be faster at advancing and more storage-efficient on dense 
blocks of postings. This is not a new idea, @mkhludnev proposed something 
similar a long time ago #6116.
   
   @msokolov recently brought up (#14080) that such an encoding has become 
especially appealing with the introduction of the
   `DocIdSetIterator#loadIntoBitSet` API, and the fact that non-scoring 
disjunctions and dense conjunctions now take advantage of it. Indeed, if 
postings are stored in a bit set, `#loadIntoBitSet` would just need to OR the 
postings bits into the bits that are used as an intermediate representation of 
matches of the query.
   


-- 
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: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to