| 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.lucene40 |
Lucene 4.0 file format.
|
| org.apache.lucene.codecs.pulsing |
Pulsing Codec: inlines low frequency terms' postings into terms dictionary.
|
| org.apache.lucene.codecs.sep |
Sep: base support for separate files (doc,frq,pos,skp,pyl)
|
| Modifier and Type | Method and Description |
|---|---|
abstract PostingsWriterBase |
PostingsBaseFormat.postingsWriterBase(SegmentWriteState state) |
| Constructor and Description |
|---|
BlockTermsWriter(TermsIndexWriterBase termsIndexWriter,
SegmentWriteState state,
PostingsWriterBase postingsWriter) |
BlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer.
|
| Constructor and Description |
|---|
AppendingTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock) |
| Modifier and Type | Class and Description |
|---|---|
class |
Lucene40PostingsWriter
Concrete class that writes the 4.0 frq/prx postings format.
|
| Modifier and Type | Method and Description |
|---|---|
PostingsWriterBase |
Lucene40PostingsBaseFormat.postingsWriterBase(SegmentWriteState state) |
| Modifier and Type | Class and Description |
|---|---|
class |
PulsingPostingsWriter
Writer for the pulsing format.
|
| Constructor and Description |
|---|
PulsingPostingsWriter(int maxPositions,
PostingsWriterBase wrappedPostingsWriter)
If the total number of positions (summed across all docs
for this term) is <= maxPositions, then the postings are
inlined into terms dict
|
| Modifier and Type | Class and Description |
|---|---|
class |
SepPostingsWriter
Writes frq to .frq, docs to .doc, pos to .pos, payloads
to .pyl, skip data to .skp
|
Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.