| Package | Description |
|---|---|
| org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
| org.apache.lucene.codecs.lucene70 |
Components from the Lucene 7.0 index format.
|
| org.apache.lucene.codecs.lucene80 |
Lucene 8.0 file 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 | Field and Description |
|---|---|
private static NamedSPILoader<DocValuesFormat> |
DocValuesFormat.Holder.LOADER |
| Modifier and Type | Method and Description |
|---|---|
DocValuesFormat |
FilterCodec.docValuesFormat() |
abstract DocValuesFormat |
Codec.docValuesFormat()
Encodes/decodes docvalues
|
static DocValuesFormat |
DocValuesFormat.forName(java.lang.String name)
looks up a format by name
|
| Modifier and Type | Method and Description |
|---|---|
(package private) static NamedSPILoader<DocValuesFormat> |
DocValuesFormat.Holder.getLoader() |
| Modifier and Type | Class and Description |
|---|---|
class |
Lucene70DocValuesFormat
Lucene 7.0 DocValues format.
|
| Modifier and Type | Field and Description |
|---|---|
private DocValuesFormat |
Lucene70Codec.defaultDVFormat |
private DocValuesFormat |
Lucene70Codec.docValuesFormat |
| Modifier and Type | Method and Description |
|---|---|
DocValuesFormat |
Lucene70Codec.docValuesFormat() |
| Modifier and Type | Class and Description |
|---|---|
class |
Lucene80DocValuesFormat
Lucene 8.0 DocValues format.
|
| Modifier and Type | Field and Description |
|---|---|
private DocValuesFormat |
Lucene80Codec.defaultDVFormat |
private DocValuesFormat |
Lucene80Codec.docValuesFormat |
| Modifier and Type | Method and Description |
|---|---|
DocValuesFormat |
Lucene80Codec.docValuesFormat() |
DocValuesFormat |
Lucene80Codec.getDocValuesFormatForField(java.lang.String field)
Returns the docvalues format that should be used for writing
new segments of
field. |
| Modifier and Type | Class and Description |
|---|---|
class |
PerFieldDocValuesFormat
Enables per field docvalues support.
|
| Modifier and Type | Field and Description |
|---|---|
private java.util.Map<DocValuesFormat,PerFieldDocValuesFormat.ConsumerAndSuffix> |
PerFieldDocValuesFormat.FieldsWriter.formats |
| Modifier and Type | Method and Description |
|---|---|
abstract DocValuesFormat |
PerFieldDocValuesFormat.getDocValuesFormatForField(java.lang.String field)
Returns the doc values format that should be used for writing
new segments of
field. |
| Modifier and Type | Method and Description |
|---|---|
private void |
ReadersAndUpdates.handleDVUpdates(FieldInfos infos,
Directory dir,
DocValuesFormat dvFormat,
SegmentReader reader,
java.util.Map<java.lang.Integer,java.util.Set<java.lang.String>> fieldFiles,
long maxDelGen,
InfoStream infoStream) |