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 (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
.Methods in org.apache.lucene.util.fst with parameters of type FSTCompiler Modifier and Type Method Description long
NodeHash. add(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> nodeIn)
(package private) long
FST. addNode(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> nodeIn)
private boolean
FST. shouldExpandNodeWithDirectAddressing(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> nodeIn, int numBytesPerArc, int maxBytesPerArcWithoutLabel, int labelRange)
Returns whether the given node should be expanded with direct addressing instead of binary search.private boolean
FST. shouldExpandNodeWithFixedLengthArcs(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> node)
Returns whether the given node should be expanded with fixed length arcs.private void
FST. writeNodeForBinarySearch(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> nodeIn, long startAddress, int maxBytesPerArc)
private void
FST. writeNodeForDirectAddressing(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> nodeIn, long startAddress, int maxBytesPerArcWithoutLabel, int labelRange)
private void
FST. writePresenceBits(FSTCompiler<T> fstCompiler, FSTCompiler.UnCompiledNode<T> nodeIn, long dest, int numPresenceBytes)
Constructors in org.apache.lucene.util.fst with parameters of type FSTCompiler Constructor Description UnCompiledNode(FSTCompiler<T> owner, int depth)
-