Package | Description |
---|---|
org.apache.lucene.search |
Code to search indices.
|
org.apache.lucene.util |
Some utility classes.
|
Modifier and Type | Class and Description |
---|---|
class |
FieldCacheDocIdSet
Base class for DocIdSet to be used with FieldCache.
|
class |
FilteredDocIdSet
Abstract decorator class for a DocIdSet implementation
that provides on-demand filtering/validation
mechanism on a given DocIdSet.
|
Modifier and Type | Field and Description |
---|---|
static DocIdSet |
DocIdSet.EMPTY_DOCIDSET
An empty
DocIdSet instance for easy use, e.g. in Filters that hit no documents. |
Modifier and Type | Field and Description |
---|---|
protected org.apache.lucene.search.CachingWrapperFilter.FilterCache<DocIdSet> |
CachingWrapperFilter.cache |
Modifier and Type | Method and Description |
---|---|
protected DocIdSet |
CachingWrapperFilter.docIdSetToCache(DocIdSet docIdSet,
IndexReader reader)
Provide the DocIdSet to be cached, using the DocIdSet provided
by the wrapped Filter.
|
DocIdSet |
SpanFilterResult.getDocIdSet()
Returns the docIdSet
|
DocIdSet |
SpanQueryFilter.getDocIdSet(IndexReader reader) |
DocIdSet |
QueryWrapperFilter.getDocIdSet(IndexReader reader) |
DocIdSet |
MultiTermQueryWrapperFilter.getDocIdSet(IndexReader reader)
Returns a DocIdSet with documents that should be
permitted in search results.
|
abstract DocIdSet |
Filter.getDocIdSet(IndexReader reader)
Creates a
DocIdSet enumerating the documents that should be
permitted in search results. |
DocIdSet |
FieldValueFilter.getDocIdSet(IndexReader reader) |
DocIdSet |
FieldCacheTermsFilter.getDocIdSet(IndexReader reader) |
abstract DocIdSet |
FieldCacheRangeFilter.getDocIdSet(IndexReader reader)
This method is implemented for each data type
|
DocIdSet |
CachingWrapperFilter.getDocIdSet(IndexReader reader) |
DocIdSet |
CachingSpanFilter.getDocIdSet(IndexReader reader) |
Modifier and Type | Method and Description |
---|---|
protected DocIdSet |
CachingWrapperFilter.docIdSetToCache(DocIdSet docIdSet,
IndexReader reader)
Provide the DocIdSet to be cached, using the DocIdSet provided
by the wrapped Filter.
|
Constructor and Description |
---|
FilteredDocIdSet(DocIdSet innerSet)
Constructor.
|
SpanFilterResult(DocIdSet docIdSet,
List<SpanFilterResult.PositionInfo> positions) |
Modifier and Type | Class and Description |
---|---|
class |
DocIdBitSet
Simple DocIdSet and DocIdSetIterator backed by a BitSet
|
class |
FixedBitSet
BitSet of fixed length (numBits), backed by accessible
(
FixedBitSet.getBits() ) long[], accessed with an int index,
implementing Bits and DocIdSet. |
class |
OpenBitSet
An "open" BitSet implementation that allows direct access to the array of words
storing the bits.
|
class |
OpenBitSetDISI
OpenBitSet with added methods to bulk-update the bits
from a
DocIdSetIterator . |
class |
SortedVIntList
Stores and iterate on sorted integers in compressed form in RAM.
|