Uses of Class
org.apache.lucene.codecs.PostingsWriterBase
-
Packages that use PostingsWriterBase 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.blocktree BlockTree terms dictionary.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.org.apache.lucene.codecs.idversion A primary-key postings format that associates a version (long) with each term and can provide fail-fast lookups by ID and version.org.apache.lucene.codecs.lucene84 Components from the Lucene 8.4 index format.org.apache.lucene.codecs.memory Term dictionary, DocValues or Postings formats that are read entirely into memory.org.apache.lucene.codecs.uniformsplit Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.uniformsplit.sharedterms Pluggable term index / block terms dictionary implementations. -
-
Uses of PostingsWriterBase in org.apache.lucene.codecs
Subclasses of PostingsWriterBase in org.apache.lucene.codecs Modifier and Type Class Description class
PushPostingsWriterBase
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 PostingsWriterBase Modifier and Type Field Description (package private) PostingsWriterBase
BlockTermsWriter. postingsWriter
private PostingsWriterBase
BlockTermsWriter.TermsWriter. postingsWriter
Constructors in org.apache.lucene.codecs.blockterms with parameters of type PostingsWriterBase Constructor Description BlockTermsWriter(TermsIndexWriterBase termsIndexWriter, SegmentWriteState state, PostingsWriterBase postingsWriter)
TermsWriter(TermsIndexWriterBase.FieldWriter fieldIndexWriter, FieldInfo fieldInfo, PostingsWriterBase postingsWriter)
-
Uses of PostingsWriterBase in org.apache.lucene.codecs.blocktree
Fields in org.apache.lucene.codecs.blocktree declared as PostingsWriterBase Modifier and Type Field Description (package private) PostingsWriterBase
BlockTreeTermsWriter. postingsWriter
Constructors in org.apache.lucene.codecs.blocktree with parameters of type PostingsWriterBase Constructor Description BlockTreeTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)
Create a new writer. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.blocktreeords
Fields in org.apache.lucene.codecs.blocktreeords declared as PostingsWriterBase Modifier and Type Field Description (package private) PostingsWriterBase
OrdsBlockTreeTermsWriter. postingsWriter
Constructors in org.apache.lucene.codecs.blocktreeords with parameters of type PostingsWriterBase Constructor Description OrdsBlockTreeTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)
Create a new writer. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.idversion
Subclasses of PostingsWriterBase in org.apache.lucene.codecs.idversion Modifier and Type Class Description (package private) class
IDVersionPostingsWriter
Fields in org.apache.lucene.codecs.idversion declared as PostingsWriterBase Modifier and Type Field Description (package private) PostingsWriterBase
VersionBlockTreeTermsWriter. postingsWriter
Constructors in org.apache.lucene.codecs.idversion with parameters of type PostingsWriterBase Constructor Description VersionBlockTreeTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter, int minItemsInBlock, int maxItemsInBlock)
Create a new writer. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.lucene84
Subclasses of PostingsWriterBase in org.apache.lucene.codecs.lucene84 Modifier and Type Class Description class
Lucene84PostingsWriter
Concrete class that writes docId(maybe frq,pos,offset,payloads) list with postings format. -
Uses of PostingsWriterBase in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as PostingsWriterBase Modifier and Type Field Description (package private) PostingsWriterBase
FSTTermsWriter. postingsWriter
Constructors in org.apache.lucene.codecs.memory with parameters of type PostingsWriterBase Constructor Description FSTTermsWriter(SegmentWriteState state, PostingsWriterBase postingsWriter)
-
Uses of PostingsWriterBase in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as PostingsWriterBase Modifier and Type Field Description protected PostingsWriterBase
UniformSplitTermsWriter. postingsWriter
Methods in org.apache.lucene.codecs.uniformsplit with parameters of type PostingsWriterBase Modifier and Type Method Description protected FieldsConsumer
UniformSplitPostingsFormat. createUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder)
Constructors in org.apache.lucene.codecs.uniformsplit with parameters of type PostingsWriterBase Constructor Description UniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder)
UniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder, FieldMetadata.Serializer fieldMetadataWriter, java.lang.String codecName, int versionCurrent, java.lang.String termsBlocksExtension, java.lang.String dictionaryExtension)
UniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, BlockEncoder blockEncoder)
-
Uses of PostingsWriterBase in org.apache.lucene.codecs.uniformsplit.sharedterms
Methods in org.apache.lucene.codecs.uniformsplit.sharedterms with parameters of type PostingsWriterBase Modifier and Type Method Description protected FieldsConsumer
STUniformSplitPostingsFormat. createUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder)
Constructors in org.apache.lucene.codecs.uniformsplit.sharedterms with parameters of type PostingsWriterBase Constructor Description STUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder)
STUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder, FieldMetadata.Serializer fieldMetadataWriter, java.lang.String codecName, int versionCurrent, java.lang.String termsBlocksExtension, java.lang.String dictionaryExtension)
STUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, BlockEncoder blockEncoder)
-