Package | Description |
---|---|
org.apache.lucene.codecs |
Codecs API: API for customization of the encoding and structure of the index.
|
org.apache.lucene.codecs.blockterms |
Pluggable term index / block terms dictionary implementations.
|
org.apache.lucene.codecs.lucene40 |
Lucene 4.0 file format.
|
org.apache.lucene.codecs.lucene41 |
Lucene 4.1 file format.
|
org.apache.lucene.codecs.memory |
Term dictionary, DocValues or Postings formats that are read entirely into memory.
|
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)
Creates the
PostingsWriterBase for this
format. |
Constructor and Description |
---|
BlockTreeTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter,
int minItemsInBlock,
int maxItemsInBlock)
Create a new writer.
|
Constructor and Description |
---|
BlockTermsWriter(TermsIndexWriterBase termsIndexWriter,
SegmentWriteState state,
PostingsWriterBase postingsWriter) |
Modifier and Type | Method and Description |
---|---|
PostingsWriterBase |
Lucene40PostingsBaseFormat.postingsWriterBase(SegmentWriteState state)
Deprecated.
|
Modifier and Type | Class and Description |
---|---|
class |
Lucene41PostingsWriter
Concrete class that writes docId(maybe frq,pos,offset,payloads) list
with postings format.
|
Modifier and Type | Method and Description |
---|---|
PostingsWriterBase |
Lucene41PostingsBaseFormat.postingsWriterBase(SegmentWriteState state) |
Constructor and Description |
---|
FSTOrdTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter) |
FSTTermsWriter(SegmentWriteState state,
PostingsWriterBase postingsWriter) |
Modifier and Type | Class and Description |
---|---|
class |
PulsingPostingsWriter
Writer for the pulsing format.
|
Constructor and Description |
---|
PulsingPostingsWriter(SegmentWriteState state,
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-2015 The Apache Software Foundation. All Rights Reserved.