public class BitDocIdSet extends DocIdSet
| Modifier and Type | Class and Description |
|---|---|
static class |
BitDocIdSet.Builder
A builder of
DocIdSets that supports random access. |
| Constructor and Description |
|---|
BitDocIdSet(BitSet set)
Same as
BitDocIdSet(BitSet, long) but uses the set's
approximate cardinality as a cost. |
BitDocIdSet(BitSet set,
long cost)
Wrap the given
FixedBitSet as a DocIdSet. |
| Modifier and Type | Method and Description |
|---|---|
BitSet |
bits()
Optionally provides a
Bits interface for random access
to matching documents. |
boolean |
isCacheable()
This DocIdSet implementation is cacheable.
|
DocIdSetIterator |
iterator()
Provides a
DocIdSetIterator to access the set. |
long |
ramBytesUsed()
Return the memory usage of this object in bytes.
|
String |
toString() |
getChildResourcespublic BitDocIdSet(BitSet set, long cost)
FixedBitSet as a DocIdSet. The provided
FixedBitSet should not be modified after having wrapped as a
DocIdSet.public BitDocIdSet(BitSet set)
BitDocIdSet(BitSet, long) but uses the set's
approximate cardinality as a cost.public DocIdSetIterator iterator()
DocIdSetDocIdSetIterator to access the set.
This implementation can return null if there
are no docs that match.public BitSet bits()
DocIdSetBits interface for random access
to matching documents.bits in class DocIdSetnull, if this DocIdSet does not support random access.
In contrast to DocIdSet.iterator(), a return value of null
does 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 (as Bits interface cannot throw
IOException). This is generally true for bit sets
like FixedBitSet, which return
itself if they are used as DocIdSet.public boolean isCacheable()
isCacheable in class DocIdSetpublic long ramBytesUsed()
AccountableCopyright © 2000-2015 Apache Software Foundation. All Rights Reserved.