| Package | Description |
|---|---|
| org.apache.lucene.facet |
Faceted search.
|
| org.apache.lucene.search |
Code to search indices.
|
| org.apache.lucene.spatial.prefix |
Prefix Tree Strategy.
|
| org.apache.lucene.util |
Some utility classes.
|
| Modifier and Type | Field and Description |
|---|---|
DocIdSet |
FacetsCollector.MatchingDocs.bits
Which documents were seen.
|
| Constructor and Description |
|---|
MatchingDocs(LeafReaderContext context,
DocIdSet bits,
int totalHits,
float[] scores)
Sole constructor.
|
| Modifier and Type | Field and Description |
|---|---|
static DocIdSet |
DocIdSet.EMPTY
An empty
DocIdSet instance |
| Modifier and Type | Method and Description |
|---|---|
protected DocIdSet |
LRUQueryCache.cacheImpl(BulkScorer scorer,
int maxDoc)
Default cache implementation: uses
RoaringDocIdSet for sets that
have a density < 1% and a BitDocIdSet over a FixedBitSet
otherwise. |
| Modifier and Type | Method and Description |
|---|---|
protected abstract DocIdSet |
AbstractVisitingPrefixTreeQuery.VisitorTemplate.finish()
Called last to return the result.
|
DocIdSet |
AbstractVisitingPrefixTreeQuery.VisitorTemplate.getDocIdSet() |
protected DocIdSet |
ContainsPrefixTreeQuery.getDocIdSet(LeafReaderContext context) |
protected DocIdSet |
IntersectsPrefixTreeQuery.getDocIdSet(LeafReaderContext context) |
protected abstract DocIdSet |
AbstractPrefixTreeQuery.getDocIdSet(LeafReaderContext context) |
protected DocIdSet |
WithinPrefixTreeQuery.getDocIdSet(LeafReaderContext context) |
| Modifier and Type | Class and Description |
|---|---|
class |
BaseDocIdSetTestCase<T extends DocIdSet>
Base test class for
DocIdSets. |
| Modifier and Type | Class and Description |
|---|---|
class |
BitDocIdSet
|
class |
NotDocIdSet
|
class |
RoaringDocIdSet
DocIdSet implementation inspired from http://roaringbitmap.org/
The space is divided into blocks of 2^16 bits and each block is encoded
independently. |
| Modifier and Type | Method and Description |
|---|---|
DocIdSet |
DocIdSetBuilder.build()
Build a
DocIdSet from the accumulated doc IDs. |
| Constructor and Description |
|---|
NotDocIdSet(int maxDoc,
DocIdSet in)
Sole constructor.
|
Copyright © 2000–2025 The Apache Software Foundation. All rights reserved.