Uses of Class
org.apache.lucene.search.DocIdSet
-
Packages that use DocIdSet Package Description org.apache.lucene.search org.apache.lucene.spatial.prefix org.apache.lucene.util -
-
Uses of DocIdSet in org.apache.lucene.search
Fields in org.apache.lucene.search declared as DocIdSet Modifier and Type Field Description static DocIdSetDocIdSet. EMPTYAn emptyDocIdSetinstanceMethods in org.apache.lucene.search that return DocIdSet Modifier and Type Method Description protected DocIdSetLRUQueryCache. cacheImpl(BulkScorer scorer, int maxDoc)Default cache implementation: usesRoaringDocIdSetfor sets that have a density < 1% and aBitDocIdSetover aFixedBitSetotherwise. -
Uses of DocIdSet in org.apache.lucene.spatial.prefix
Methods in org.apache.lucene.spatial.prefix that return DocIdSet Modifier and Type Method Description protected abstract DocIdSetAbstractVisitingPrefixTreeQuery.VisitorTemplate. finish()Called last to return the result.protected abstract DocIdSetAbstractPrefixTreeQuery. getDocIdSet(LeafReaderContext context)DocIdSetAbstractVisitingPrefixTreeQuery.VisitorTemplate. getDocIdSet()protected DocIdSetContainsPrefixTreeQuery. getDocIdSet(LeafReaderContext context)protected DocIdSetIntersectsPrefixTreeQuery. getDocIdSet(LeafReaderContext context)protected DocIdSetWithinPrefixTreeQuery. getDocIdSet(LeafReaderContext context) -
Uses of DocIdSet in org.apache.lucene.util
Subclasses of DocIdSet in org.apache.lucene.util Modifier and Type Class Description classBitDocIdSetclassNotDocIdSetclassRoaringDocIdSetDocIdSetimplementation inspired from http://roaringbitmap.org/ The space is divided into blocks of 2^16 bits and each block is encoded independently.Methods in org.apache.lucene.util that return DocIdSet Modifier and Type Method Description DocIdSetDocIdSetBuilder. build()Build aDocIdSetfrom the accumulated doc IDs.Constructors in org.apache.lucene.util with parameters of type DocIdSet Constructor Description NotDocIdSet(int maxDoc, DocIdSet in)Sole constructor.
-