| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149 |
- <?php
- namespace Elastica\Suggest;
- /**
- * Class Term.
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-term.html
- */
- class Term extends AbstractSuggest
- {
- const SORT_SCORE = 'score';
- const SORT_FREQUENCY = 'frequency';
- const SUGGEST_MODE_MISSING = 'missing';
- const SUGGEST_MODE_POPULAR = 'popular';
- const SUGGEST_MODE_ALWAYS = 'always';
- /**
- * @param string $analyzer
- *
- * @return $this
- */
- public function setAnalyzer($analyzer)
- {
- return $this->setParam('analyzer', $analyzer);
- }
- /**
- * @param string $sort see SORT_* constants for options
- *
- * @return $this
- */
- public function setSort($sort)
- {
- return $this->setParam('sort', $sort);
- }
- /**
- * @param string $mode see SUGGEST_MODE_* constants for options
- *
- * @return $this
- */
- public function setSuggestMode($mode)
- {
- return $this->setParam('suggest_mode', $mode);
- }
- /**
- * If true, suggest terms will be lower cased after text analysis.
- *
- * @param bool $lowercase
- *
- * @return $this
- */
- public function setLowercaseTerms($lowercase = true)
- {
- return $this->setParam('lowercase_terms', (bool) $lowercase);
- }
- /**
- * Set the maximum edit distance candidate suggestions can have in order to be considered as a suggestion.
- *
- * @param int $max Either 1 or 2. Any other value will result in an error.
- *
- * @return $this
- */
- public function setMaxEdits($max)
- {
- return $this->setParam('max_edits', (int) $max);
- }
- /**
- * The number of minimum prefix characters that must match in order to be a suggestion candidate.
- *
- * @param int $length defaults to 1
- *
- * @return $this
- */
- public function setPrefixLength($length)
- {
- return $this->setParam('prefix_len', (int) $length);
- }
- /**
- * The minimum length a suggest text term must have in order to be included.
- *
- * @param int $length defaults to 4
- *
- * @return $this
- */
- public function setMinWordLength($length)
- {
- return $this->setParam('min_word_length', (int) $length);
- }
- /**
- * @param int $max defaults to 5
- *
- * @return $this
- */
- public function setMaxInspections($max)
- {
- return $this->setParam('max_inspections', $max);
- }
- /**
- * Set the minimum number of documents in which a suggestion should appear.
- *
- * @param int|float $min Defaults to 0. If the value is greater than 1, it must be a whole number.
- *
- * @return $this
- */
- public function setMinDocFrequency($min)
- {
- return $this->setParam('min_doc_freq', $min);
- }
- /**
- * Set the maximum number of documents in which a suggest text token can exist in order to be included.
- *
- * @param float $max
- *
- * @return $this
- */
- public function setMaxTermFrequency($max)
- {
- return $this->setParam('max_term_freq', $max);
- }
- /**
- * Which string distance implementation to use for comparing how similar suggested terms are.
- * Five possible values can be specified:.
- *
- * - internal
- * - damerau_levenshtein
- * - levenshtein
- * - jaro_winkler
- * - ngram
- *
- * @param string $distanceAlgrorithm
- *
- * @return $this
- */
- public function setStringDistanceAlgorithm($distanceAlgorithm)
- {
- return $this->setParam('string_distance', $distanceAlgorithm);
- }
- }
|