Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.lucene50 |
Components from the Lucene 5.0 index format
See
org.apache.lucene.codecs.lucene53 for an overview
of the index format. |
org.apache.lucene.codecs.lucene62 |
Lucene 6.2 file format.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
Modifier and Type | Field and Description |
---|---|
static PostingsFormat[] |
PostingsFormat.EMPTY
Zero-length
PostingsFormat array. |
Modifier and Type | Method and Description |
---|---|
static PostingsFormat |
PostingsFormat.forName(String name)
looks up a format by name
|
abstract PostingsFormat |
Codec.postingsFormat()
Encodes/decodes postings
|
PostingsFormat |
FilterCodec.postingsFormat() |
Modifier and Type | Class and Description |
---|---|
class |
Lucene50PostingsFormat
Lucene 5.0 postings format, which encodes postings in packed integer blocks
for fast decode.
|
Modifier and Type | Method and Description |
---|---|
PostingsFormat |
Lucene62Codec.getPostingsFormatForField(String field)
Returns the postings format that should be used for writing
new segments of
field . |
PostingsFormat |
Lucene62Codec.postingsFormat() |
Modifier and Type | Class and Description |
---|---|
class |
PerFieldPostingsFormat
Enables per field postings support.
|
Modifier and Type | Method and Description |
---|---|
abstract PostingsFormat |
PerFieldPostingsFormat.getPostingsFormatForField(String field)
Returns the postings format that should be used for writing
new segments of
field . |
Copyright © 2000-2017 Apache Software Foundation. All Rights Reserved.