Uses of Class
org.apache.lucene.util.fst.FSTCompiler
-
Packages that use FSTCompiler Package Description org.apache.lucene.codecs.blockterms Pluggable term index / block terms dictionary implementations.org.apache.lucene.codecs.blocktreeords Same postings format as Lucene50, except the terms dictionary also supports ords, i.e.org.apache.lucene.codecs.lucene90.blocktree BlockTree terms dictionary.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.sandbox.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.search.suggest.document Support for document suggestionorg.apache.lucene.util.fst Finite state transducers -
-
Uses of FSTCompiler in org.apache.lucene.codecs.blockterms
Fields in org.apache.lucene.codecs.blockterms declared as FSTCompiler Modifier and Type Field Description private FSTCompiler<java.lang.Long>
VariableGapTermsIndexWriter.FSTFieldWriter. fstCompiler
-
Uses of FSTCompiler in org.apache.lucene.codecs.blocktreeords
Methods in org.apache.lucene.codecs.blocktreeords with parameters of type FSTCompiler Modifier and Type Method Description private void
OrdsBlockTreeTermsWriter.PendingBlock. append(FSTCompiler<FSTOrdsOutputs.Output> fstCompiler, FST<FSTOrdsOutputs.Output> subIndex, long termOrdOffset, IntsRefBuilder scratchIntsRef)
-
Uses of FSTCompiler in org.apache.lucene.codecs.lucene90.blocktree
Methods in org.apache.lucene.codecs.lucene90.blocktree with parameters of type FSTCompiler Modifier and Type Method Description private void
Lucene90BlockTreeTermsWriter.PendingBlock. append(FSTCompiler<BytesRef> fstCompiler, FST<BytesRef> subIndex, IntsRefBuilder scratchIntsRef)
-
Uses of FSTCompiler in org.apache.lucene.codecs.memory
Fields in org.apache.lucene.codecs.memory declared as FSTCompiler Modifier and Type Field Description private FSTCompiler<FSTTermOutputs.TermData>
FSTTermsWriter.TermsWriter. fstCompiler
-
Uses of FSTCompiler in org.apache.lucene.codecs.uniformsplit
Fields in org.apache.lucene.codecs.uniformsplit declared as FSTCompiler Modifier and Type Field Description protected FSTCompiler<java.lang.Long>
FSTDictionary.Builder. fstCompiler
-
Uses of FSTCompiler in org.apache.lucene.sandbox.codecs.idversion
Methods in org.apache.lucene.sandbox.codecs.idversion with parameters of type FSTCompiler Modifier and Type Method Description private void
VersionBlockTreeTermsWriter.PendingBlock. append(FSTCompiler<PairOutputs.Pair<BytesRef,java.lang.Long>> fstCompiler, FST<PairOutputs.Pair<BytesRef,java.lang.Long>> subIndex, IntsRefBuilder scratchIntsRef)
-
Uses of FSTCompiler in org.apache.lucene.search.suggest.document
Fields in org.apache.lucene.search.suggest.document declared as FSTCompiler Modifier and Type Field Description private FSTCompiler<PairOutputs.Pair<java.lang.Long,BytesRef>>
NRTSuggesterBuilder. fstCompiler
-
Uses of FSTCompiler in org.apache.lucene.util.fst
Fields in org.apache.lucene.util.fst declared as FSTCompiler Modifier and Type Field Description private FSTCompiler<T>
NodeHash. fstCompiler
(package private) FSTCompiler<T>
FSTCompiler.UnCompiledNode. owner
Methods in org.apache.lucene.util.fst that return FSTCompiler Modifier and Type Method Description FSTCompiler<T>
FSTCompiler.Builder. build()
Creates a newFSTCompiler
.Constructors in org.apache.lucene.util.fst with parameters of type FSTCompiler Constructor Description NodeHash(FSTCompiler<T> fstCompiler, double ramLimitMB)
ramLimitMB is the max RAM we can use for recording suffixes.UnCompiledNode(FSTCompiler<T> owner, int depth)
-