Uses of Class
org.apache.lucene.codecs.PostingsWriterBase

Packages that use PostingsWriterBase
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) 
 

Uses of PostingsWriterBase in org.apache.lucene.codecs
 

Methods in org.apache.lucene.codecs that return PostingsWriterBase
abstract  PostingsWriterBase PostingsBaseFormat.postingsWriterBase(SegmentWriteState state)
           
 

Constructors in org.apache.lucene.codecs with parameters of type PostingsWriterBase
BlockTermsWriter(TermsIndexWriterBase termsIndexWriter, SegmentWriteState state, PostingsWriterBase postingsWriter)
           
BlockTreeTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)
          Create a new writer.
 

Uses of PostingsWriterBase in org.apache.lucene.codecs.appending
 

Constructors in org.apache.lucene.codecs.appending with parameters of type PostingsWriterBase
AppendingTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)
           
 

Uses of PostingsWriterBase in org.apache.lucene.codecs.lucene40
 

Subclasses of PostingsWriterBase in org.apache.lucene.codecs.lucene40
 class Lucene40PostingsWriter
          Concrete class that writes the 4.0 frq/prx postings format.
 

Methods in org.apache.lucene.codecs.lucene40 that return PostingsWriterBase
 PostingsWriterBase Lucene40PostingsBaseFormat.postingsWriterBase(SegmentWriteState state)
           
 

Uses of PostingsWriterBase in org.apache.lucene.codecs.pulsing
 

Subclasses of PostingsWriterBase in org.apache.lucene.codecs.pulsing
 class PulsingPostingsWriter
          Writer for the pulsing format.
 

Constructors in org.apache.lucene.codecs.pulsing with parameters of type PostingsWriterBase
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
 

Uses of PostingsWriterBase in org.apache.lucene.codecs.sep
 

Subclasses of PostingsWriterBase in org.apache.lucene.codecs.sep
 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.