| Package | Description |
|---|---|
| org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
| org.apache.lucene.codecs.appending |
Codec for on append-only outputs, such as plain output streams and append-only filesystems.
|
| org.apache.lucene.codecs.bloom |
Codec PostingsFormat for fast access to low-frequency terms such as primary key fields.
|
| org.apache.lucene.codecs.lucene40 |
Lucene 4.0 file format.
|
| org.apache.lucene.codecs.memory |
Postings format that is read entirely into memory.
|
| org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
| org.apache.lucene.codecs.pulsing |
Pulsing Codec: inlines low frequency terms' postings into terms dictionary.
|
| org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
| Modifier and Type | Class and Description |
|---|---|
class |
BlockTermsWriter
Writes terms dict, block-encoding (column stride) each
term's metadata for each set of terms between two
index terms.
|
class |
BlockTreeTermsWriter
block-based terms index and dictionary writer.
|
| Modifier and Type | Method and Description |
|---|---|
abstract FieldsConsumer |
PostingsFormat.fieldsConsumer(SegmentWriteState state)
Writes a new segment
|
| Modifier and Type | Class and Description |
|---|---|
class |
AppendingTermsWriter
Append-only version of
BlockTreeTermsWriter |
| Modifier and Type | Method and Description |
|---|---|
FieldsConsumer |
BloomFilteringPostingsFormat.fieldsConsumer(SegmentWriteState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsConsumer |
Lucene40PostingsFormat.fieldsConsumer(SegmentWriteState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsConsumer |
MemoryPostingsFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
DirectPostingsFormat.fieldsConsumer(SegmentWriteState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsConsumer |
PerFieldPostingsFormat.fieldsConsumer(SegmentWriteState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsConsumer |
PulsingPostingsFormat.fieldsConsumer(SegmentWriteState state) |
| Modifier and Type | Method and Description |
|---|---|
FieldsConsumer |
SimpleTextPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.