Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.asserting |
Codec for testing that asserts various contracts of the codec apis.
|
org.apache.lucene.codecs.autoprefix |
An experimental postings format that automatically indexes appropriate
prefix terms for fast range and prefix queries.
|
org.apache.lucene.codecs.blockterms |
Pluggable term index / block terms dictionary implementations.
|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
org.apache.lucene.codecs.blocktreeords |
Same postings format as Lucene50, except the terms dictionary also
supports ords, i.e.
|
org.apache.lucene.codecs.bloom |
Codec PostingsFormat for fast access to low-frequency terms
such as primary key fields.
|
org.apache.lucene.codecs.idversion |
A primary-key postings format that associates a version (long) with each term and
can provide fail-fast lookups by ID and version.
|
org.apache.lucene.codecs.lucene40 |
Lucene 4.0 file format.
|
org.apache.lucene.codecs.lucene41 |
Lucene 4.1 file format.
|
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.memory |
Term dictionary, DocValues or Postings formats that are read
entirely into memory.
|
org.apache.lucene.codecs.mockrandom |
Frankenstein codec for testing that pieces together random components.
|
org.apache.lucene.codecs.perfield |
Postings format that can delegate to different formats per-field.
|
org.apache.lucene.codecs.ramonly |
Codec for testing that never writes to disk.
|
org.apache.lucene.codecs.simpletext |
Simpletext Codec: writes human readable postings.
|
org.apache.lucene.search.suggest.document |
Support for document suggestion
|
Modifier and Type | Method and Description |
---|---|
abstract FieldsConsumer |
PostingsFormat.fieldsConsumer(SegmentWriteState state)
Writes a new segment
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
AssertingPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
AutoPrefixPostingsFormat.fieldsConsumer(SegmentWriteState state) |
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.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
LuceneVarGapFixedInterval.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
LuceneVarGapDocFreqInterval.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
LuceneFixedGap.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Class and Description |
---|---|
class |
BlockTreeTermsWriter
Block-based terms index and dictionary writer.
|
Modifier and Type | Class and Description |
---|---|
class |
OrdsBlockTreeTermsWriter
This is just like
BlockTreeTermsWriter , except it also stores a version per term, and adds a method to its TermsEnum
implementation to seekExact only if the version is >= the specified version. |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
BlockTreeOrdsPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
TestBloomFilteredLucenePostings.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
BloomFilteringPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Class and Description |
---|---|
class |
VersionBlockTreeTermsWriter
This is just like
BlockTreeTermsWriter , except it also stores a version per term, and adds a method to its TermsEnum
implementation to seekExact only if the version is >= the specified version. |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
IDVersionPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
Lucene40PostingsFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
Lucene41PostingsFormat.fieldsConsumer(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
Lucene50PostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Class and Description |
---|---|
class |
FSTOrdTermsWriter
FST-based term dict, using ord as FST output.
|
class |
FSTTermsWriter
FST-based term dict, using metadata as FST output.
|
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
DirectPostingsFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
MemoryPostingsFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
FSTOrdPostingsFormat.fieldsConsumer(SegmentWriteState state) |
FieldsConsumer |
FSTPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
MockRandomPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
PerFieldPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
RAMOnlyPostingsFormat.fieldsConsumer(SegmentWriteState writeState) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
SimpleTextPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Modifier and Type | Method and Description |
---|---|
FieldsConsumer |
CompletionPostingsFormat.fieldsConsumer(SegmentWriteState state) |
Copyright © 2000–2015 The Apache Software Foundation. All rights reserved.