| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- <?php
- namespace Elastica\Suggest\CandidateGenerator;
- /**
- * Class DirectGenerator.
- *
- * @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-suggesters-phrase.html#_direct_generators
- */
- class DirectGenerator extends AbstractCandidateGenerator
- {
- const SUGGEST_MODE_MISSING = 'missing';
- const SUGGEST_MODE_POPULAR = 'popular';
- const SUGGEST_MODE_ALWAYS = 'always';
- /**
- * @param string $field
- */
- public function __construct($field)
- {
- $this->setField($field);
- }
- /**
- * Set the field name from which to fetch candidate suggestions.
- *
- * @param string $field
- *
- * @return $this
- */
- public function setField($field)
- {
- return $this->setParam('field', $field);
- }
- /**
- * Set the maximum corrections to be returned per suggest text token.
- *
- * @param int $size
- *
- * @return $this
- */
- public function setSize($size)
- {
- return $this->setParam('size', $size);
- }
- /**
- * @param string $mode see SUGGEST_MODE_* constants for options
- *
- * @return $this
- */
- public function setSuggestMode($mode)
- {
- return $this->setParam('suggest_mode', $mode);
- }
- /**
- * @param int $max can only be a value between 1 and 2. Defaults to 2.
- *
- * @return $this
- */
- public function setMaxEdits($max)
- {
- return $this->setParam('max_edits', $max);
- }
- /**
- * @param int $length defaults to 1
- *
- * @return $this
- */
- public function setPrefixLength($length)
- {
- return $this->setParam('prefix_length', $length);
- }
- /**
- * @param int $min defaults to 4
- *
- * @return $this
- */
- public function setMinWordLength($min)
- {
- return $this->setParam('min_word_length', $min);
- }
- /**
- * @param int $max
- *
- * @return $this
- */
- public function setMaxInspections($max)
- {
- return $this->setParam('max_inspections', $max);
- }
- /**
- * @param float $min
- *
- * @return $this
- */
- public function setMinDocFrequency($min)
- {
- return $this->setParam('min_doc_freq', $min);
- }
- /**
- * @param float $max
- *
- * @return $this
- */
- public function setMaxTermFrequency($max)
- {
- return $this->setParam('max_term_freq', $max);
- }
- /**
- * Set an analyzer to be applied to the original token prior to candidate generation.
- *
- * @param string $pre an analyzer
- *
- * @return $this
- */
- public function setPreFilter($pre)
- {
- return $this->setParam('pre_filter', $pre);
- }
- /**
- * Set an analyzer to be applied to generated tokens before they are passed to the phrase scorer.
- *
- * @param string $post
- *
- * @return $this
- */
- public function setPostFilter($post)
- {
- return $this->setParam('post_filter', $post);
- }
- }
|