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 |
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.lucene84 |
Lucene 8.4 file format.
|
org.apache.lucene.codecs.memory |
Term dictionary, DocValues or Postings formats that are read
entirely into memory.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
FilterCodec.docValuesFormat() |
abstract DocValuesFormat |
Codec.docValuesFormat()
Encodes/decodes docvalues
|
static DocValuesFormat |
DocValuesFormat.forName(String name)
looks up a format by name
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene70DocValuesFormat
Lucene 7.0 DocValues format.
|
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 | Method and Description |
---|---|
DocValuesFormat |
Lucene80Codec.docValuesFormat() |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
Lucene84Codec.docValuesFormat() |
DocValuesFormat |
Lucene84Codec.getDocValuesFormatForField(String field)
Returns the docvalues format that should be used for writing
new segments of
field . |
Modifier and Type | Class and Description |
---|---|
class |
DirectDocValuesFormat
In-memory docvalues format that does no (or very little)
compression.
|
Modifier and Type | Class and Description |
---|---|
class |
PerFieldDocValuesFormat
Enables per field docvalues support.
|
Modifier and Type | Method and Description |
---|---|
abstract DocValuesFormat |
PerFieldDocValuesFormat.getDocValuesFormatForField(String field)
Returns the doc values format that should be used for writing
new segments of
field . |
Modifier and Type | Method and Description |
---|---|
DocValuesFormat |
SimpleTextCodec.docValuesFormat() |
Copyright © 2000–2020 The Apache Software Foundation. All rights reserved.