Uses of Class
org.apache.lucene.search.DocIdSet
-
Packages that use DocIdSet Package Description org.apache.lucene.index Code to maintain and access indices.org.apache.lucene.search Code to search indices.org.apache.lucene.search.join Support for index-time and query-time joins.org.apache.lucene.util Some utility classes. -
-
Uses of DocIdSet in org.apache.lucene.index
Subclasses of DocIdSet in org.apache.lucene.index Modifier and Type Class Description (package private) classDocsWithFieldSetAccumulator for documents that have a value for a field. -
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 emptyDocIdSetinstance(package private) DocIdSetMultiTermQueryConstantScoreWrapper.WeightOrDocIdSet. set(package private) DocIdSetTermInSetQuery.WeightOrDocIdSet. setFields in org.apache.lucene.search with type parameters of type DocIdSet Modifier and Type Field Description private java.util.Map<Query,DocIdSet>LRUQueryCache.LeafCache. cacheMethods in org.apache.lucene.search that return DocIdSet Modifier and Type Method Description private DocIdSetLRUQueryCache.CachingWrapperWeight. cache(LeafReaderContext context)protected DocIdSetLRUQueryCache. cacheImpl(BulkScorer scorer, int maxDoc)Default cache implementation: usesRoaringDocIdSetfor sets that have a density < 1% and aBitDocIdSetover aFixedBitSetotherwise.private static DocIdSetLRUQueryCache. cacheIntoBitSet(BulkScorer scorer, int maxDoc)private static DocIdSetLRUQueryCache. cacheIntoRoaringDocIdSet(BulkScorer scorer, int maxDoc)(package private) DocIdSetLRUQueryCache. get(Query key, IndexReader.CacheHelper cacheHelper)(package private) DocIdSetLRUQueryCache.LeafCache. get(Query query)Methods in org.apache.lucene.search with parameters of type DocIdSet Modifier and Type Method Description (package private) voidLRUQueryCache.LeafCache. putIfAbsent(Query query, DocIdSet set)private voidLRUQueryCache. putIfAbsent(Query query, DocIdSet set, IndexReader.CacheHelper cacheHelper)Constructors in org.apache.lucene.search with parameters of type DocIdSet Constructor Description WeightOrDocIdSet(DocIdSet bitset)WeightOrDocIdSet(DocIdSet bitset) -
Uses of DocIdSet in org.apache.lucene.search.join
Fields in org.apache.lucene.search.join with type parameters of type DocIdSet Modifier and Type Field Description (package private) java.util.Map<IndexReader.CacheKey,DocIdSet>QueryBitSetProducer. cache -
Uses of DocIdSet in org.apache.lucene.util
Subclasses of DocIdSet in org.apache.lucene.util Modifier and Type Class Description classBitDocIdSet(package private) classIntArrayDocIdSetclassNotDocIdSetclassRoaringDocIdSetDocIdSetimplementation inspired from http://roaringbitmap.org/ The space is divided into blocks of 2^16 bits and each block is encoded independently.private static classRoaringDocIdSet.ShortArrayDocIdSetDocIdSetimplementation that can store documents up to 2^16-1 in a short[].Fields in org.apache.lucene.util declared as DocIdSet Modifier and Type Field Description private DocIdSet[]RoaringDocIdSet. docIdSetsprivate DocIdSetNotDocIdSet. inprivate DocIdSet[]RoaringDocIdSet.Builder. setsMethods 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.RoaringDocIdSet(DocIdSet[] docIdSets, int cardinality)
-