class FuzzyTerms in Search API Solr 4.x
Represents a parse mode that parses the sentence into a fuzzy search.
Plugin annotation
@SearchApiParseMode(
id = "fuzzy_terms",
label = @Translation("Multiple words with fuzziness"),
description = @Translation("The query is interpreted as multiple keywords separated by spaces. Fuzzy searches discover terms that are similar to a specified term without necessarily being an exact match. Note: In many cases, stemming (reducing terms to a common stem) can produce similar effects to fuzzy searches. Stemming is enabled for most variations of the fulltext field types."),
)
Hierarchy
- class \Drupal\search_api_solr\Plugin\search_api\parse_mode\FuzzyTerms extends \Drupal\search_api\Plugin\search_api\parse_mode\Terms
Expanded class hierarchy of FuzzyTerms
File
- src/
Plugin/ search_api/ parse_mode/ FuzzyTerms.php, line 16
Namespace
Drupal\search_api_solr\Plugin\search_api\parse_modeView source
class FuzzyTerms extends Terms {
}