Uses of Class
org.apache.lucene.codecs.PostingsWriterBase
Packages that use PostingsWriterBase
Package
Description
Lucene 9.0 file format.
Codecs API: API for customization of the encoding and structure of the index.
Pluggable term index / block terms dictionary implementations.
Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.
Lucene 10.1 file format.
BlockTree terms dictionary.
Term dictionary, DocValues or Postings formats that are read entirely into memory.
Pluggable term index / block terms dictionary implementations.
Pluggable term index / block terms dictionary implementations.
A primary-key postings format that associates a version (long) with each term and can provide
fail-fast lookups by ID and version.
-
Uses of PostingsWriterBase in org.apache.lucene.backward_codecs.lucene90
Subclasses of PostingsWriterBase in org.apache.lucene.backward_codecs.lucene90Modifier and TypeClassDescriptionfinal class
Concrete class that writes docId(maybe frq,pos,offset,payloads) list with postings format. -
Uses of PostingsWriterBase in org.apache.lucene.codecs
Subclasses of PostingsWriterBase in org.apache.lucene.codecsModifier and TypeClassDescriptionclass
Extension ofPostingsWriterBase
, adding a push API for writing each element of the postings. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.blockterms
Fields in org.apache.lucene.codecs.blockterms declared as PostingsWriterBaseModifier and TypeFieldDescription(package private) final PostingsWriterBase
BlockTermsWriter.postingsWriter
private final PostingsWriterBase
BlockTermsWriter.TermsWriter.postingsWriter
Constructors in org.apache.lucene.codecs.blockterms with parameters of type PostingsWriterBaseModifierConstructorDescriptionBlockTermsWriter
(TermsIndexWriterBase termsIndexWriter, SegmentWriteState state, PostingsWriterBase postingsWriter) (package private)
TermsWriter
(TermsIndexWriterBase.FieldWriter fieldIndexWriter, FieldInfo fieldInfo, PostingsWriterBase postingsWriter) -
Uses of PostingsWriterBase in org.apache.lucene.codecs.blocktreeords
Fields in org.apache.lucene.codecs.blocktreeords declared as PostingsWriterBaseModifier and TypeFieldDescription(package private) final PostingsWriterBase
OrdsBlockTreeTermsWriter.postingsWriter
Constructors in org.apache.lucene.codecs.blocktreeords with parameters of type PostingsWriterBaseModifierConstructorDescriptionOrdsBlockTreeTermsWriter
(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock) Create a new writer. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.lucene101
Subclasses of PostingsWriterBase in org.apache.lucene.codecs.lucene101 -
Uses of PostingsWriterBase in org.apache.lucene.codecs.lucene90.blocktree
Fields in org.apache.lucene.codecs.lucene90.blocktree declared as PostingsWriterBaseModifier and TypeFieldDescription(package private) final PostingsWriterBase
Lucene90BlockTreeTermsWriter.postingsWriter
Constructors in org.apache.lucene.codecs.lucene90.blocktree with parameters of type PostingsWriterBaseModifierConstructorDescriptionLucene90BlockTreeTermsWriter
(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock) Create a new writer.Lucene90BlockTreeTermsWriter
(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock, int version) Expert constructor that allows configuring the version, used for bw tests. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as PostingsWriterBaseModifier and TypeFieldDescription(package private) final PostingsWriterBase
FSTTermsWriter.postingsWriter
Constructors in org.apache.lucene.codecs.memory with parameters of type PostingsWriterBaseModifierConstructorDescriptionFSTTermsWriter
(SegmentWriteState state, PostingsWriterBase postingsWriter) -
Uses of PostingsWriterBase in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as PostingsWriterBaseModifier and TypeFieldDescriptionprotected final PostingsWriterBase
UniformSplitTermsWriter.postingsWriter
Methods in org.apache.lucene.codecs.uniformsplit with parameters of type PostingsWriterBaseModifier and TypeMethodDescriptionprotected FieldsConsumer
UniformSplitPostingsFormat.createUniformSplitTermsWriter
(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder) Constructors in org.apache.lucene.codecs.uniformsplit with parameters of type PostingsWriterBaseModifierConstructorDescriptionUniformSplitTermsWriter
(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder) protected
UniformSplitTermsWriter
(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder, FieldMetadata.Serializer fieldMetadataWriter, String codecName, int versionCurrent, String termsBlocksExtension, String dictionaryExtension) UniformSplitTermsWriter
(PostingsWriterBase postingsWriter, SegmentWriteState state, BlockEncoder blockEncoder) -
Uses of PostingsWriterBase in org.apache.lucene.sandbox.codecs.idversion
Subclasses of PostingsWriterBase in org.apache.lucene.sandbox.codecs.idversionFields in org.apache.lucene.sandbox.codecs.idversion declared as PostingsWriterBaseModifier and TypeFieldDescription(package private) final PostingsWriterBase
VersionBlockTreeTermsWriter.postingsWriter
Constructors in org.apache.lucene.sandbox.codecs.idversion with parameters of type PostingsWriterBaseModifierConstructorDescriptionVersionBlockTreeTermsWriter
(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock) Create a new writer.