| Package | Description |
|---|---|
| org.apache.lucene.search |
Code to search indices.
|
| org.apache.lucene.util |
Some utility classes.
|
| 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 | 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-2021 Apache Software Foundation. All Rights Reserved.