API Reference / API Parameters / disableTypoToleranceOnWords
Feb. 26, 2019

disableTypoToleranceOnWords

Type: list of strings
Engine default: []
Parameter syntax
'disableTypoToleranceOnWords' => [
  'word',
  ...
]

Can be used in these methods:
setSettings

About this parameter#

List of words on which you want to disable typo tolerance.

Examples#

Set list of words on which typo tolerance need to be disabled#

Edit
1
2
3
4
5
6
$index->setSettings([
  'disableTypoToleranceOnWords' => [
    'wheel',
    '1X2BCD'
  ]
]);

Did you find this page helpful?

PHP