Class TSTLookup
- java.lang.Object
-
- org.apache.lucene.search.suggest.Lookup
-
- org.apache.lucene.search.suggest.tst.TSTLookup
-
- All Implemented Interfaces:
Accountable
public class TSTLookup extends Lookup
Suggest implementation based on a Ternary Search Tree- See Also:
TSTAutocomplete
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.apache.lucene.search.suggest.Lookup
Lookup.LookupPriorityQueue, Lookup.LookupResult
-
-
Field Summary
Fields Modifier and Type Field Description (package private) TSTAutocompleteautocompleteprivate longcountNumber of entries the lookup was built withprivate static byteEQ_KIDprivate static byteHAS_TOKENprivate static byteHAS_VALUEprivate static byteHI_KIDprivate static byteLO_KID(package private) TernaryTreeNoderootprivate DirectorytempDirprivate java.lang.StringtempFileNamePrefixprivate static java.util.Comparator<BytesRef>utf8SortedAsUTF16SortOrderTST uses UTF-16 sorting, so we need a suitable BytesRef comparator to do this.-
Fields inherited from class org.apache.lucene.search.suggest.Lookup
CHARSEQUENCE_COMPARATOR
-
Fields inherited from interface org.apache.lucene.util.Accountable
NULL_ACCOUNTABLE
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(java.lang.CharSequence key, java.lang.Object value)Adds a new node ifkeyalready exists, otherwise replaces its value.voidbuild(InputIterator iterator)Builds up a new internalLookuprepresentation based on the givenInputIterator.private static booleancharSeqEquals(java.lang.CharSequence left, java.lang.CharSequence right)java.lang.Objectget(java.lang.CharSequence key)Returns the value for the specified key, or null if the key does not exist.longgetCount()Get the number of entries the lookup was built withbooleanload(DataInput input)Discard current lookup data and load it from a previously saved copy.java.util.List<Lookup.LookupResult>lookup(java.lang.CharSequence key, java.util.Set<BytesRef> contexts, boolean onlyMorePopular, int num)Look up a key and return possible completion for this key.longramBytesUsed()Returns byte size of the underlying TSTprivate voidreadRecursively(DataInput in, TernaryTreeNode node)booleanstore(DataOutput output)Persist the constructed lookup data to a directory.private voidwriteRecursively(DataOutput out, TernaryTreeNode node)-
Methods inherited from class org.apache.lucene.search.suggest.Lookup
build, load, lookup, lookup, store
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.lucene.util.Accountable
getChildResources
-
-
-
-
Field Detail
-
root
TernaryTreeNode root
-
autocomplete
TSTAutocomplete autocomplete
-
count
private long count
Number of entries the lookup was built with
-
tempDir
private final Directory tempDir
-
tempFileNamePrefix
private final java.lang.String tempFileNamePrefix
-
utf8SortedAsUTF16SortOrder
private static final java.util.Comparator<BytesRef> utf8SortedAsUTF16SortOrder
TST uses UTF-16 sorting, so we need a suitable BytesRef comparator to do this.
-
LO_KID
private static final byte LO_KID
- See Also:
- Constant Field Values
-
EQ_KID
private static final byte EQ_KID
- See Also:
- Constant Field Values
-
HI_KID
private static final byte HI_KID
- See Also:
- Constant Field Values
-
HAS_TOKEN
private static final byte HAS_TOKEN
- See Also:
- Constant Field Values
-
HAS_VALUE
private static final byte HAS_VALUE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
TSTLookup
public TSTLookup()
Creates a new TSTLookup with an empty Ternary Search Tree.- See Also:
build(InputIterator)
-
TSTLookup
public TSTLookup(Directory tempDir, java.lang.String tempFileNamePrefix)
Creates a new TSTLookup, for building.- See Also:
build(InputIterator)
-
-
Method Detail
-
build
public void build(InputIterator iterator) throws java.io.IOException
Description copied from class:LookupBuilds up a new internalLookuprepresentation based on the givenInputIterator. The implementation might re-sort the data internally.
-
add
public boolean add(java.lang.CharSequence key, java.lang.Object value)Adds a new node ifkeyalready exists, otherwise replaces its value.This method always returns true.
-
get
public java.lang.Object get(java.lang.CharSequence key)
Returns the value for the specified key, or null if the key does not exist.
-
charSeqEquals
private static boolean charSeqEquals(java.lang.CharSequence left, java.lang.CharSequence right)
-
lookup
public java.util.List<Lookup.LookupResult> lookup(java.lang.CharSequence key, java.util.Set<BytesRef> contexts, boolean onlyMorePopular, int num)
Description copied from class:LookupLook up a key and return possible completion for this key.- Specified by:
lookupin classLookup- Parameters:
key- lookup key. Depending on the implementation this may be a prefix, misspelling, or even infix.contexts- contexts to filter the lookup by, or null if all contexts are allowed; if the suggestion contains any of the contexts, it's a matchonlyMorePopular- return only more popular resultsnum- maximum number of results to return- Returns:
- a list of possible completions, with their relative weight (e.g. popularity)
-
readRecursively
private void readRecursively(DataInput in, TernaryTreeNode node) throws java.io.IOException
- Throws:
java.io.IOException
-
writeRecursively
private void writeRecursively(DataOutput out, TernaryTreeNode node) throws java.io.IOException
- Throws:
java.io.IOException
-
store
public boolean store(DataOutput output) throws java.io.IOException
Description copied from class:LookupPersist the constructed lookup data to a directory. Optional operation.- Specified by:
storein classLookup- Parameters:
output-DataOutputto write the data to.- Returns:
- true if successful, false if unsuccessful or not supported.
- Throws:
java.io.IOException- when fatal IO error occurs.
-
load
public boolean load(DataInput input) throws java.io.IOException
Description copied from class:LookupDiscard current lookup data and load it from a previously saved copy. Optional operation.
-
ramBytesUsed
public long ramBytesUsed()
Returns byte size of the underlying TST
-
-