Package org.apache.lucene.search
Class FieldCacheDocIdSet
- java.lang.Object
-
- org.apache.lucene.search.DocIdSet
-
- org.apache.lucene.search.FieldCacheDocIdSet
-
public abstract class FieldCacheDocIdSet extends DocIdSet
Base class for DocIdSet to be used with FieldCache. The implementation of its iterator is very stupid and slow if the implementation of thematchDoc(int)method is not optimized, as iterators simply increment the document id untilmatchDoc(int)returns true. Because of thismatchDoc(int)must be as fast as possible and in no case do any I/O.
-
-
Constructor Summary
Constructors Constructor Description FieldCacheDocIdSet(int maxDoc, Bits acceptDocs)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Bitsbits()Optionally provides aBitsinterface for random access to matching documents.booleanisCacheable()this DocIdSet is always cacheable (does not go back to the reader for iteration)DocIdSetIteratoriterator()Provides aDocIdSetIteratorto access the set.
-
-
-
Constructor Detail
-
FieldCacheDocIdSet
public FieldCacheDocIdSet(int maxDoc, Bits acceptDocs)
-
-
Method Detail
-
isCacheable
public final boolean isCacheable()
this DocIdSet is always cacheable (does not go back to the reader for iteration)- Overrides:
isCacheablein classDocIdSet
-
bits
public final Bits bits()
Description copied from class:DocIdSetOptionally provides aBitsinterface for random access to matching documents.- Overrides:
bitsin classDocIdSet- Returns:
null, if thisDocIdSetdoes not support random access. In contrast toDocIdSet.iterator(), a return value ofnulldoes not imply that no documents match the filter! The default implementation does not provide random access, so you only need to implement this method if your DocIdSet can guarantee random access to every docid in O(1) time without external disk access (asBitsinterface cannot throwIOException). This is generally true for bit sets likeFixedBitSet, which return itself if they are used asDocIdSet.
-
iterator
public final DocIdSetIterator iterator() throws java.io.IOException
Description copied from class:DocIdSetProvides aDocIdSetIteratorto access the set. This implementation can returnnullif there are no docs that match.
-
-