Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.blocktree |
BlockTree terms dictionary.
|
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.lucene50 |
Components from the Lucene 5.0 index format
See
org.apache.lucene.codecs.lucene80 for an overview
of the index format. |
Modifier and Type | Class and Description |
---|---|
class |
PushPostingsWriterBase
Extension of
PostingsWriterBase , adding a push
API for writing each element of the postings. |
Modifier and Type | Field and Description |
---|---|
(package private) PostingsWriterBase |
BlockTreeTermsWriter.postingsWriter |
Constructor and Description |
---|
BlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer.
|
Modifier and Type | Class and Description |
---|---|
(package private) class |
IDVersionPostingsWriter |
Modifier and Type | Field and Description |
---|---|
(package private) PostingsWriterBase |
VersionBlockTreeTermsWriter.postingsWriter |
Constructor and Description |
---|
VersionBlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer.
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene50PostingsWriter
Concrete class that writes docId(maybe frq,pos,offset,payloads) list
with postings format.
|