Uses of Class
org.apache.lucene.codecs.PostingsFormat
-
Packages that use PostingsFormat Package Description org.apache.lucene.codecs Codecs API: API for customization of the encoding and structure of the index.org.apache.lucene.codecs.lucene90 Lucene 9.0 file format.org.apache.lucene.codecs.lucene95 Lucene 9.5 file format.org.apache.lucene.codecs.perfield Postings format that can delegate to different formats per-field. -
-
Uses of PostingsFormat in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as PostingsFormat Modifier and Type Field Description static PostingsFormat[]
PostingsFormat. EMPTY
Zero-lengthPostingsFormat
array.Methods in org.apache.lucene.codecs that return PostingsFormat Modifier and Type Method Description static PostingsFormat
PostingsFormat. forName(String name)
looks up a format by nameabstract PostingsFormat
Codec. postingsFormat()
Encodes/decodes postingsPostingsFormat
FilterCodec. postingsFormat()
-
Uses of PostingsFormat in org.apache.lucene.codecs.lucene90
Subclasses of PostingsFormat in org.apache.lucene.codecs.lucene90 Modifier and Type Class Description class
Lucene90PostingsFormat
Lucene 5.0 postings format, which encodes postings in packed integer blocks for fast decode. -
Uses of PostingsFormat in org.apache.lucene.codecs.lucene95
Methods in org.apache.lucene.codecs.lucene95 that return PostingsFormat Modifier and Type Method Description PostingsFormat
Lucene95Codec. getPostingsFormatForField(String field)
Returns the postings format that should be used for writing new segments offield
.PostingsFormat
Lucene95Codec. postingsFormat()
-
Uses of PostingsFormat in org.apache.lucene.codecs.perfield
Subclasses of PostingsFormat in org.apache.lucene.codecs.perfield Modifier and Type Class Description class
PerFieldPostingsFormat
Enables per field postings support.Methods in org.apache.lucene.codecs.perfield that return PostingsFormat Modifier and Type Method Description abstract PostingsFormat
PerFieldPostingsFormat. getPostingsFormatForField(String field)
Returns the postings format that should be used for writing new segments offield
.
-