Uses of Class
org.apache.lucene.codecs.lucene80.IndexedDISI
-
Packages that use IndexedDISI Package Description org.apache.lucene.codecs.lucene80 Components from the Lucene 8.0 index format Seeorg.apache.lucene.codecs.lucene84
for an overview of the index format. -
-
Uses of IndexedDISI in org.apache.lucene.codecs.lucene80
Fields in org.apache.lucene.codecs.lucene80 declared as IndexedDISI Modifier and Type Field Description (package private) IndexedDISI
Lucene80DocValuesProducer.SparseBinaryDocValues. disi
(package private) IndexedDISI
Lucene80DocValuesProducer.SparseNumericDocValues. disi
(package private) IndexedDISI
Lucene80NormsProducer.SparseNormsIterator. disi
Methods in org.apache.lucene.codecs.lucene80 with parameters of type IndexedDISI Modifier and Type Method Description (package private) abstract boolean
IndexedDISI.Method. advanceExactWithinBlock(IndexedDISI disi, int target)
Advance the iterator exactly to the position corresponding to the giventarget
and return whether this document exists.(package private) abstract boolean
IndexedDISI.Method. advanceWithinBlock(IndexedDISI disi, int target)
Advance to the first doc from the block that is equal to or greater thantarget
.private static void
IndexedDISI. rankSkip(IndexedDISI disi, int targetInBlock)
If the distance between the current position and the target is > 8 words, the rank cache will be used to guarantee a worst-case of 1 rank-lookup and 7 word-read-and-count-bits operations.Constructors in org.apache.lucene.codecs.lucene80 with parameters of type IndexedDISI Constructor Description SparseBinaryDocValues(IndexedDISI disi)
SparseNormsIterator(IndexedDISI disi)
SparseNumericDocValues(IndexedDISI disi)
-