Uses of Class
org.apache.lucene.codecs.FieldsConsumer
-
Packages that use FieldsConsumer 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.bloom Codec PostingsFormat for fast access to low-frequency terms such as primary key fields.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.lucene50 Components from the Lucene 5.0 index format Seeorg.apache.lucene.codecs.lucene80for an overview of the index format.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.perfield Postings format that can delegate to different formats per-field.org.apache.lucene.codecs.simpletext Simpletext Codec: writes human readable postings.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.org.apache.lucene.search.suggest.document Support for document suggestion -
-
Uses of FieldsConsumer in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return FieldsConsumer Modifier and Type Method Description abstract FieldsConsumerPostingsFormat. fieldsConsumer(SegmentWriteState state)Writes a new segment -
Uses of FieldsConsumer in org.apache.lucene.codecs.blockterms
Subclasses of FieldsConsumer in org.apache.lucene.codecs.blockterms Modifier and Type Class Description classBlockTermsWriterWrites terms dict, block-encoding (column stride) each term's metadata for each set of terms between two index terms. -
Uses of FieldsConsumer in org.apache.lucene.codecs.blocktree
Subclasses of FieldsConsumer in org.apache.lucene.codecs.blocktree Modifier and Type Class Description classBlockTreeTermsWriterBlock-based terms index and dictionary writer. -
Uses of FieldsConsumer in org.apache.lucene.codecs.blocktreeords
Subclasses of FieldsConsumer in org.apache.lucene.codecs.blocktreeords Modifier and Type Class Description classOrdsBlockTreeTermsWriterThis is just likeBlockTreeTermsWriter, except it also stores a version per term, and adds a method to its TermsEnum implementation to seekExact only if the version is >= the specified version.Methods in org.apache.lucene.codecs.blocktreeords that return FieldsConsumer Modifier and Type Method Description FieldsConsumerBlockTreeOrdsPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.bloom
Subclasses of FieldsConsumer in org.apache.lucene.codecs.bloom Modifier and Type Class Description (package private) classBloomFilteringPostingsFormat.BloomFilteredFieldsConsumerFields in org.apache.lucene.codecs.bloom declared as FieldsConsumer Modifier and Type Field Description private FieldsConsumerBloomFilteringPostingsFormat.BloomFilteredFieldsConsumer. delegateFieldsConsumerMethods in org.apache.lucene.codecs.bloom that return FieldsConsumer Modifier and Type Method Description FieldsConsumerBloomFilteringPostingsFormat. fieldsConsumer(SegmentWriteState state)Constructors in org.apache.lucene.codecs.bloom with parameters of type FieldsConsumer Constructor Description BloomFilteredFieldsConsumer(FieldsConsumer fieldsConsumer, SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.idversion
Subclasses of FieldsConsumer in org.apache.lucene.codecs.idversion Modifier and Type Class Description classVersionBlockTreeTermsWriterThis is just likeBlockTreeTermsWriter, except it also stores a version per term, and adds a method to its TermsEnum implementation to seekExact only if the version is >= the specified version.Methods in org.apache.lucene.codecs.idversion that return FieldsConsumer Modifier and Type Method Description FieldsConsumerIDVersionPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.lucene50
Methods in org.apache.lucene.codecs.lucene50 that return FieldsConsumer Modifier and Type Method Description FieldsConsumerLucene50PostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.lucene84
Methods in org.apache.lucene.codecs.lucene84 that return FieldsConsumer Modifier and Type Method Description FieldsConsumerLucene84PostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.memory
Subclasses of FieldsConsumer in org.apache.lucene.codecs.memory Modifier and Type Class Description classFSTTermsWriterFST-based term dict, using metadata as FST output.Methods in org.apache.lucene.codecs.memory that return FieldsConsumer Modifier and Type Method Description FieldsConsumerDirectPostingsFormat. fieldsConsumer(SegmentWriteState state)FieldsConsumerFSTPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.perfield
Subclasses of FieldsConsumer in org.apache.lucene.codecs.perfield Modifier and Type Class Description private classPerFieldPostingsFormat.FieldsWriterMethods in org.apache.lucene.codecs.perfield that return FieldsConsumer Modifier and Type Method Description FieldsConsumerPerFieldPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.simpletext
Subclasses of FieldsConsumer in org.apache.lucene.codecs.simpletext Modifier and Type Class Description (package private) classSimpleTextFieldsWriterMethods in org.apache.lucene.codecs.simpletext that return FieldsConsumer Modifier and Type Method Description FieldsConsumerSimpleTextPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.uniformsplit
Subclasses of FieldsConsumer in org.apache.lucene.codecs.uniformsplit Modifier and Type Class Description classUniformSplitTermsWriterA block-based terms index and dictionary that assigns terms to nearly uniform length blocks.Methods in org.apache.lucene.codecs.uniformsplit that return FieldsConsumer Modifier and Type Method Description protected FieldsConsumerUniformSplitPostingsFormat. createUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder)FieldsConsumerUniformSplitPostingsFormat. fieldsConsumer(SegmentWriteState state) -
Uses of FieldsConsumer in org.apache.lucene.codecs.uniformsplit.sharedterms
Subclasses of FieldsConsumer in org.apache.lucene.codecs.uniformsplit.sharedterms Modifier and Type Class Description classSTUniformSplitTermsWriterExtendsUniformSplitTermsWriterby sharing all the fields terms in the same dictionary and by writing all the fields of a term in the same block line.Methods in org.apache.lucene.codecs.uniformsplit.sharedterms that return FieldsConsumer Modifier and Type Method Description protected FieldsConsumerSTUniformSplitPostingsFormat. createUniformSplitTermsWriter(PostingsWriterBase postingsWriter, SegmentWriteState state, int targetNumBlockLines, int deltaNumLines, BlockEncoder blockEncoder) -
Uses of FieldsConsumer in org.apache.lucene.search.suggest.document
Subclasses of FieldsConsumer in org.apache.lucene.search.suggest.document Modifier and Type Class Description (package private) classCompletionFieldsConsumerWeighted FSTs for any indexedSuggestFieldis built onCompletionFieldsConsumer.write(Fields,NormsProducer).Fields in org.apache.lucene.search.suggest.document declared as FieldsConsumer Modifier and Type Field Description private FieldsConsumerCompletionFieldsConsumer. delegateFieldsConsumerMethods in org.apache.lucene.search.suggest.document that return FieldsConsumer Modifier and Type Method Description FieldsConsumerCompletionPostingsFormat. fieldsConsumer(SegmentWriteState state)
-