Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.lucene80 |
Components from the Lucene 8.0 index format
See
org.apache.lucene.codecs.lucene84 for an overview
of the index format. |
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.index |
Code to maintain and access indices.
|
Modifier and Type | Method and Description |
---|---|
abstract DocValuesProducer |
DocValuesFormat.fieldsProducer(SegmentReadState state)
Returns a
DocValuesProducer to read docvalues from the index. |
DocValuesProducer |
DocValuesProducer.getMergeInstance()
Returns an instance optimized for merging.
|
Modifier and Type | Method and Description |
---|---|
abstract void |
DocValuesConsumer.addBinaryField(FieldInfo field,
DocValuesProducer valuesProducer)
Writes binary docvalues for a field.
|
abstract void |
DocValuesConsumer.addNumericField(FieldInfo field,
DocValuesProducer valuesProducer)
Writes numeric docvalues for a field.
|
abstract void |
DocValuesConsumer.addSortedField(FieldInfo field,
DocValuesProducer valuesProducer)
Writes pre-sorted binary docvalues for a field.
|
abstract void |
DocValuesConsumer.addSortedNumericField(FieldInfo field,
DocValuesProducer valuesProducer)
Writes pre-sorted numeric docvalues for a field
|
abstract void |
DocValuesConsumer.addSortedSetField(FieldInfo field,
DocValuesProducer valuesProducer)
Writes pre-sorted set docvalues for a field
|
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
Lucene80DocValuesFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
PerFieldDocValuesFormat.fieldsProducer(SegmentReadState state) |
Modifier and Type | Class and Description |
---|---|
class |
EmptyDocValuesProducer
Abstract base class implementing a
DocValuesProducer that has no doc values. |
Modifier and Type | Field and Description |
---|---|
DocValuesProducer[] |
MergeState.docValuesProducers
DocValues producers being merged
|
Modifier and Type | Method and Description |
---|---|
DocValuesProducer |
SegmentReader.getDocValuesReader() |
abstract DocValuesProducer |
CodecReader.getDocValuesReader()
Expert: retrieve underlying DocValuesProducer
|
DocValuesProducer |
FilterCodecReader.getDocValuesReader() |
DocValuesProducer |
SortingCodecReader.getDocValuesReader() |
Copyright © 2000-2021 Apache Software Foundation. All Rights Reserved.