Uses of Class
org.apache.lucene.codecs.FieldsProducer
-
Packages that use FieldsProducer 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.index Code to maintain and access indices.org.apache.lucene.search.suggest.document Support for document suggestion -
-
Uses of FieldsProducer in org.apache.lucene.codecs
Methods in org.apache.lucene.codecs that return FieldsProducer Modifier and Type Method Description abstract FieldsProducerPostingsFormat. fieldsProducer(SegmentReadState state)Reads a segment.FieldsProducerFieldsProducer. getMergeInstance()Returns an instance optimized for merging. -
Uses of FieldsProducer in org.apache.lucene.codecs.blockterms
Subclasses of FieldsProducer in org.apache.lucene.codecs.blockterms Modifier and Type Class Description classBlockTermsReaderHandles a terms dict, but decouples all details of doc/freqs/positions reading to an instance ofPostingsReaderBase. -
Uses of FieldsProducer in org.apache.lucene.codecs.blocktree
Subclasses of FieldsProducer in org.apache.lucene.codecs.blocktree Modifier and Type Class Description classBlockTreeTermsReaderA block-based terms index and dictionary that assigns terms to variable length blocks according to how they share prefixes. -
Uses of FieldsProducer in org.apache.lucene.codecs.blocktreeords
Subclasses of FieldsProducer in org.apache.lucene.codecs.blocktreeords Modifier and Type Class Description classOrdsBlockTreeTermsReaderMethods in org.apache.lucene.codecs.blocktreeords that return FieldsProducer Modifier and Type Method Description FieldsProducerBlockTreeOrdsPostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.bloom
Subclasses of FieldsProducer in org.apache.lucene.codecs.bloom Modifier and Type Class Description (package private) static classBloomFilteringPostingsFormat.BloomFilteredFieldsProducerFields in org.apache.lucene.codecs.bloom declared as FieldsProducer Modifier and Type Field Description private FieldsProducerBloomFilteringPostingsFormat.BloomFilteredFieldsProducer. delegateFieldsProducerMethods in org.apache.lucene.codecs.bloom that return FieldsProducer Modifier and Type Method Description FieldsProducerBloomFilteringPostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.idversion
Subclasses of FieldsProducer in org.apache.lucene.codecs.idversion Modifier and Type Class Description classVersionBlockTreeTermsReaderMethods in org.apache.lucene.codecs.idversion that return FieldsProducer Modifier and Type Method Description FieldsProducerIDVersionPostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.lucene50
Methods in org.apache.lucene.codecs.lucene50 that return FieldsProducer Modifier and Type Method Description FieldsProducerLucene50PostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.lucene84
Methods in org.apache.lucene.codecs.lucene84 that return FieldsProducer Modifier and Type Method Description FieldsProducerLucene84PostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.memory
Subclasses of FieldsProducer in org.apache.lucene.codecs.memory Modifier and Type Class Description private static classDirectPostingsFormat.DirectFieldsclassFSTTermsReaderFST-based terms dictionary reader.Methods in org.apache.lucene.codecs.memory that return FieldsProducer Modifier and Type Method Description FieldsProducerDirectPostingsFormat. fieldsProducer(SegmentReadState state)FieldsProducerFSTPostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.perfield
Subclasses of FieldsProducer in org.apache.lucene.codecs.perfield Modifier and Type Class Description private static classPerFieldMergeState.FilterFieldsProducerprivate static classPerFieldPostingsFormat.FieldsReaderFields in org.apache.lucene.codecs.perfield declared as FieldsProducer Modifier and Type Field Description private FieldsProducerPerFieldMergeState.FilterFieldsProducer. inprivate FieldsProducer[]PerFieldMergeState. orgFieldsProducersFields in org.apache.lucene.codecs.perfield with type parameters of type FieldsProducer Modifier and Type Field Description private java.util.Map<java.lang.String,FieldsProducer>PerFieldPostingsFormat.FieldsReader. fieldsprivate java.util.Map<java.lang.String,FieldsProducer>PerFieldPostingsFormat.FieldsReader. formatsMethods in org.apache.lucene.codecs.perfield that return FieldsProducer Modifier and Type Method Description FieldsProducerPerFieldPostingsFormat. fieldsProducer(SegmentReadState state)FieldsProducerPerFieldPostingsFormat.FieldsReader. getMergeInstance()Constructors in org.apache.lucene.codecs.perfield with parameters of type FieldsProducer Constructor Description FilterFieldsProducer(FieldsProducer in, java.util.Collection<java.lang.String> filterFields) -
Uses of FieldsProducer in org.apache.lucene.codecs.simpletext
Subclasses of FieldsProducer in org.apache.lucene.codecs.simpletext Modifier and Type Class Description (package private) classSimpleTextFieldsReaderMethods in org.apache.lucene.codecs.simpletext that return FieldsProducer Modifier and Type Method Description FieldsProducerSimpleTextPostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.uniformsplit
Subclasses of FieldsProducer in org.apache.lucene.codecs.uniformsplit Modifier and Type Class Description classUniformSplitTermsReaderA block-based terms index and dictionary based on the Uniform Split technique.Methods in org.apache.lucene.codecs.uniformsplit that return FieldsProducer Modifier and Type Method Description protected FieldsProducerUniformSplitPostingsFormat. createUniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder)FieldsProducerUniformSplitPostingsFormat. fieldsProducer(SegmentReadState state) -
Uses of FieldsProducer in org.apache.lucene.codecs.uniformsplit.sharedterms
Subclasses of FieldsProducer in org.apache.lucene.codecs.uniformsplit.sharedterms Modifier and Type Class Description classSTUniformSplitTermsReaderA block-based terms index and dictionary based on the Uniform Split technique, and sharing all the fields terms in the same dictionary, with all the fields of a term in the same block line.Methods in org.apache.lucene.codecs.uniformsplit.sharedterms that return FieldsProducer Modifier and Type Method Description protected FieldsProducerSTUniformSplitPostingsFormat. createUniformSplitTermsReader(PostingsReaderBase postingsReader, SegmentReadState state, BlockDecoder blockDecoder) -
Uses of FieldsProducer in org.apache.lucene.index
Fields in org.apache.lucene.index declared as FieldsProducer Modifier and Type Field Description (package private) FieldsProducerMergeReaderWrapper. fields(package private) FieldsProducerSegmentCoreReaders. fieldsFieldsProducer[]MergeState. fieldsProducersPostings to mergeMethods in org.apache.lucene.index that return FieldsProducer Modifier and Type Method Description abstract FieldsProducerCodecReader. getPostingsReader()Expert: retrieve underlying FieldsProducerFieldsProducerFilterCodecReader. getPostingsReader()FieldsProducerSegmentReader. getPostingsReader()FieldsProducerSortingCodecReader. getPostingsReader()private static FieldsProducerSlowCodecReaderWrapper. readerToFieldsProducer(LeafReader reader) -
Uses of FieldsProducer in org.apache.lucene.search.suggest.document
Subclasses of FieldsProducer in org.apache.lucene.search.suggest.document Modifier and Type Class Description (package private) classCompletionFieldsProducerCompletion index (.cmp) is opened and read at instantiation to read inSuggestFieldnumbers and their FST offsets in the Completion dictionary (.lkp).Fields in org.apache.lucene.search.suggest.document declared as FieldsProducer Modifier and Type Field Description private FieldsProducerCompletionFieldsProducer. delegateFieldsProducerMethods in org.apache.lucene.search.suggest.document that return FieldsProducer Modifier and Type Method Description FieldsProducerCompletionPostingsFormat. fieldsProducer(SegmentReadState state)FieldsProducerCompletionFieldsProducer. getMergeInstance()Constructors in org.apache.lucene.search.suggest.document with parameters of type FieldsProducer Constructor Description CompletionFieldsProducer(FieldsProducer delegateFieldsProducer, java.util.Map<java.lang.String,CompletionsTermsReader> readers)
-