Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.compressing |
StoredFieldsFormat that allows cross-document and cross-field compression of stored fields.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Class and Description |
---|---|
private static class |
DocValuesConsumer.BinaryDocValuesSub
Tracks state of one binary sub-reader that we are merging
|
private static class |
DocValuesConsumer.NumericDocValuesSub
Tracks state of one numeric sub-reader that we are merging
|
private static class |
DocValuesConsumer.SortedDocValuesSub
Tracks state of one sorted sub-reader that we are merging
|
private static class |
DocValuesConsumer.SortedNumericDocValuesSub
Tracks state of one sorted numeric sub-reader that we are merging
|
private static class |
DocValuesConsumer.SortedSetDocValuesSub
Tracks state of one sorted set sub-reader that we are merging
|
private static class |
NormsConsumer.NumericDocValuesSub
Tracks state of one numeric sub-reader that we are merging
|
private static class |
StoredFieldsWriter.StoredFieldsMergeSub |
private static class |
TermVectorsWriter.TermVectorsMergeSub |
Modifier and Type | Class and Description |
---|---|
private static class |
CompressingStoredFieldsWriter.CompressingStoredFieldsMergeSub |
Modifier and Type | Class and Description |
---|---|
class |
DocIDMerger<T extends DocIDMerger.Sub>
Utility class to help merging documents from sub-readers according to either simple
concatenated (unsorted) order, or by a specified index-time sort, skipping
deleted documents and remapping non-deleted documents.
|
private static class |
DocIDMerger.SequentialDocIDMerger<T extends DocIDMerger.Sub> |
private static class |
DocIDMerger.SortedDocIDMerger<T extends DocIDMerger.Sub> |
Modifier and Type | Class and Description |
---|---|
private static class |
MappingMultiPostingsEnum.MappingPostingsSub |
Modifier and Type | Field and Description |
---|---|
private T |
DocIDMerger.SequentialDocIDMerger.current |
Modifier and Type | Method and Description |
---|---|
static <T extends DocIDMerger.Sub> |
DocIDMerger.of(java.util.List<T> subs,
boolean indexIsSorted)
Construct this from the provided subs
|
static <T extends DocIDMerger.Sub> |
DocIDMerger.of(java.util.List<T> subs,
int maxCount,
boolean indexIsSorted)
Construct this from the provided subs, specifying the maximum sub count
|