Class DirectCandidateGeneratorBuilder

java.lang.Object
org.elasticsearch.search.suggest.phrase.DirectCandidateGeneratorBuilder
All Implemented Interfaces:
Writeable, PhraseSuggestionBuilder.CandidateGenerator, ToXContent, ToXContentObject

public final class DirectCandidateGeneratorBuilder extends Object implements PhraseSuggestionBuilder.CandidateGenerator
  • Field Details

    • DIRECT_GENERATOR_FIELD

      public static final ParseField DIRECT_GENERATOR_FIELD
    • FIELDNAME_FIELD

      public static final ParseField FIELDNAME_FIELD
    • PREFILTER_FIELD

      public static final ParseField PREFILTER_FIELD
    • POSTFILTER_FIELD

      public static final ParseField POSTFILTER_FIELD
    • SUGGESTMODE_FIELD

      public static final ParseField SUGGESTMODE_FIELD
    • MIN_DOC_FREQ_FIELD

      public static final ParseField MIN_DOC_FREQ_FIELD
    • ACCURACY_FIELD

      public static final ParseField ACCURACY_FIELD
    • SIZE_FIELD

      public static final ParseField SIZE_FIELD
    • SORT_FIELD

      public static final ParseField SORT_FIELD
    • STRING_DISTANCE_FIELD

      public static final ParseField STRING_DISTANCE_FIELD
    • MAX_EDITS_FIELD

      public static final ParseField MAX_EDITS_FIELD
    • MAX_INSPECTIONS_FIELD

      public static final ParseField MAX_INSPECTIONS_FIELD
    • MAX_TERM_FREQ_FIELD

      public static final ParseField MAX_TERM_FREQ_FIELD
    • PREFIX_LENGTH_FIELD

      public static final ParseField PREFIX_LENGTH_FIELD
    • MIN_WORD_LENGTH_FIELD

      public static final ParseField MIN_WORD_LENGTH_FIELD
    • PARSER

  • Constructor Details

    • DirectCandidateGeneratorBuilder

      public DirectCandidateGeneratorBuilder(String field)
      Parameters:
      field - Sets from what field to fetch the candidate suggestions from.
    • DirectCandidateGeneratorBuilder

      public DirectCandidateGeneratorBuilder(StreamInput in) throws IOException
      Read from a stream.
      Throws:
      IOException
  • Method Details

    • writeTo

      public void writeTo(StreamOutput out) throws IOException
      Description copied from interface: Writeable
      Write this into the StreamOutput.
      Specified by:
      writeTo in interface Writeable
      Throws:
      IOException
    • suggestMode

      public DirectCandidateGeneratorBuilder suggestMode(String suggestMode)
      The global suggest mode controls what suggested terms are included or controls for what suggest text tokens, terms should be suggested for. Three possible values can be specified:
      1. missing - Only suggest terms in the suggest text that aren't in the index. This is the default.
      2. popular - Only suggest terms that occur in more docs then the original suggest text term.
      3. always - Suggest any matching suggest terms based on tokens in the suggest text.
    • accuracy

      public DirectCandidateGeneratorBuilder accuracy(float accuracy)
      Sets how similar the suggested terms at least need to be compared to the original suggest text tokens. A value between 0 and 1 can be specified. This value will be compared to the string distance result of each candidate spelling correction.

      Default is 0.5

    • size

      public DirectCandidateGeneratorBuilder size(int size)
      Sets the maximum suggestions to be returned per suggest text term.
    • sort

      Sets how to sort the suggest terms per suggest text token. Two possible values:
      1. score - Sort should first be based on score, then document frequency and then the term itself.
      2. frequency - Sort should first be based on document frequency, then score and then the term itself.

      What the score is depends on the suggester being used.

    • stringDistance

      public DirectCandidateGeneratorBuilder stringDistance(String stringDistance)
      Sets what string distance implementation to use for comparing how similar suggested terms are. Four possible values can be specified:
      1. internal - This is the default and is based on damerau_levenshtein, but highly optimized for comparing string distance for terms inside the index.
      2. damerau_levenshtein - String distance algorithm based on Damerau-Levenshtein algorithm.
      3. levenshtein - String distance algorithm based on Levenshtein edit distance algorithm.
      4. jaro_winkler - String distance algorithm based on Jaro-Winkler algorithm.
      5. ngram - String distance algorithm based on character n-grams.
    • maxEdits

      public DirectCandidateGeneratorBuilder maxEdits(Integer maxEdits)
      Sets the maximum edit distance candidate suggestions can have in order to be considered as a suggestion. Can only be a value between 1 and 2. Any other value result in an bad request error being thrown. Defaults to 2.
    • maxInspections

      public DirectCandidateGeneratorBuilder maxInspections(Integer maxInspections)
      A factor that is used to multiply with the size in order to inspect more candidate suggestions. Can improve accuracy at the cost of performance. Defaults to 5.
    • maxTermFreq

      public DirectCandidateGeneratorBuilder maxTermFreq(float maxTermFreq)
      Sets a maximum threshold in number of documents a suggest text token can exist in order to be corrected. Can be a relative percentage number (e.g 0.4) or an absolute number to represent document frequencies. If an value higher than 1 is specified then fractional can not be specified. Defaults to 0.01.

      This can be used to exclude high frequency terms from being suggested. High frequency terms are usually spelled correctly on top of this this also improves the suggest performance.

    • prefixLength

      public DirectCandidateGeneratorBuilder prefixLength(int prefixLength)
      Sets the number of minimal prefix characters that must match in order be a candidate suggestion. Defaults to 1. Increasing this number improves suggest performance. Usually misspellings don't occur in the beginning of terms.
    • minWordLength

      public DirectCandidateGeneratorBuilder minWordLength(int minWordLength)
      The minimum length a suggest text term must have in order to be corrected. Defaults to 4.
    • minDocFreq

      public DirectCandidateGeneratorBuilder minDocFreq(float minDocFreq)
      Sets a minimal threshold in number of documents a suggested term should appear in. This can be specified as an absolute number or as a relative percentage of number of documents. This can improve quality by only suggesting high frequency terms. Defaults to 0f and is not enabled. If a value higher than 1 is specified then the number cannot be fractional.
    • preFilter

      public DirectCandidateGeneratorBuilder preFilter(String preFilter)
      Sets a filter (analyzer) that is applied to each of the tokens passed to this candidate generator. This filter is applied to the original token before candidates are generated.
    • postFilter

      public DirectCandidateGeneratorBuilder postFilter(String postFilter)
      Sets a filter (analyzer) that is applied to each of the generated tokens before they are passed to the actual phrase scorer.
    • getType

      public String getType()
      gets the type identifier of this PhraseSuggestionBuilder.CandidateGenerator
      Specified by:
      getType in interface PhraseSuggestionBuilder.CandidateGenerator
    • toXContent

      public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws IOException
      Specified by:
      toXContent in interface ToXContent
      Throws:
      IOException
    • build

      public org.elasticsearch.search.suggest.phrase.PhraseSuggestionContext.DirectCandidateGenerator build(IndexAnalyzers indexAnalyzers)
      Specified by:
      build in interface PhraseSuggestionBuilder.CandidateGenerator
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object