Class Lucene41PostingsWriter
java.lang.Object
org.apache.lucene.codecs.PostingsConsumer
org.apache.lucene.codecs.PostingsWriterBase
org.apache.lucene.codecs.lucene41.Lucene41PostingsWriter
- All Implemented Interfaces:
Closeable,AutoCloseable
Concrete class that writes docId(maybe frq,pos,offset,payloads) list
with postings format.
Postings list for each term will be stored separately.
- See Also:
-
for details about skipping setting and postings layout.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a postings writer withPackedInts.COMPACTLucene41PostingsWriter(SegmentWriteState state, float acceptableOverheadRatio) Creates a postings writer with the specified PackedInts overhead ratio -
Method Summary
Modifier and TypeMethodDescriptionvoidaddPosition(int position, BytesRef payload, int startOffset, int endOffset) Add a new position & payloadvoidclose()voidencodeTerm(long[] longs, DataOutput out, FieldInfo fieldInfo, BlockTermState _state, boolean absolute) Encode metadata as long[] and byte[].voidCalled when we are done adding positions & payloads for each doc.voidfinishTerm(BlockTermState _state) Called when we are done adding docs to this termvoidinit(IndexOutput termsOut) Called once after startup, before any terms have been added.org.apache.lucene.codecs.lucene41.Lucene41PostingsWriter.IntBlockTermStateReturn a newly created empty TermStateintSets the current field for writing, and returns the fixed length of long[] metadata (which is fixed per field), called when the writing switches to another field.voidstartDoc(int docID, int termDocFreq) Adds a new doc in this term.voidStart a new term.Methods inherited from class org.apache.lucene.codecs.PostingsConsumer
merge
-
Constructor Details
-
Lucene41PostingsWriter
public Lucene41PostingsWriter(SegmentWriteState state, float acceptableOverheadRatio) throws IOException Creates a postings writer with the specified PackedInts overhead ratio- Throws:
IOException
-
Lucene41PostingsWriter
Creates a postings writer withPackedInts.COMPACT- Throws:
IOException
-
-
Method Details
-
newTermState
public org.apache.lucene.codecs.lucene41.Lucene41PostingsWriter.IntBlockTermState newTermState()Description copied from class:PostingsWriterBaseReturn a newly created empty TermState- Specified by:
newTermStatein classPostingsWriterBase
-
init
Description copied from class:PostingsWriterBaseCalled once after startup, before any terms have been added. Implementations typically write a header to the providedtermsOut.- Specified by:
initin classPostingsWriterBase- Throws:
IOException
-
setField
Description copied from class:PostingsWriterBaseSets the current field for writing, and returns the fixed length of long[] metadata (which is fixed per field), called when the writing switches to another field.- Specified by:
setFieldin classPostingsWriterBase
-
startTerm
public void startTerm()Description copied from class:PostingsWriterBaseStart a new term. Note that a matching call toPostingsWriterBase.finishTerm(BlockTermState)is done, only if the term has at least one document.- Specified by:
startTermin classPostingsWriterBase
-
startDoc
Description copied from class:PostingsConsumerAdds a new doc in this term.freqwill be -1 when term frequencies are omitted for the field.- Specified by:
startDocin classPostingsConsumer- Throws:
IOException
-
addPosition
public void addPosition(int position, BytesRef payload, int startOffset, int endOffset) throws IOException Add a new position & payload- Specified by:
addPositionin classPostingsConsumer- Throws:
IOException
-
finishDoc
Description copied from class:PostingsConsumerCalled when we are done adding positions & payloads for each doc.- Specified by:
finishDocin classPostingsConsumer- Throws:
IOException
-
finishTerm
Called when we are done adding docs to this term- Specified by:
finishTermin classPostingsWriterBase- Throws:
IOException
-
encodeTerm
public void encodeTerm(long[] longs, DataOutput out, FieldInfo fieldInfo, BlockTermState _state, boolean absolute) throws IOException Description copied from class:PostingsWriterBaseEncode metadata as long[] and byte[].absolutecontrols whether current term is delta encoded according to latest term. Usually elements inlongsare file pointers, so each one always increases when a new term is consumed.outis used to write generic bytes, which are not monotonic. NOTE: sometimes long[] might contain "don't care" values that are unused, e.g. the pointer to postings list may not be defined for some terms but is defined for others, if it is designed to inline some postings data in term dictionary. In this case, the postings writer should always use the last value, so that each element in metadata long[] remains monotonic.- Specified by:
encodeTermin classPostingsWriterBase- Throws:
IOException
-
close
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classPostingsWriterBase- Throws:
IOException
-