API Reference / API Parameters / minWordSizefor1Typo
Type: integer
Engine default: 4
Formerly: minWordSizeForApprox1
Parameter syntax
'minWordSizefor1Typo' => min_word_size

Can be used in these methods:
search, setSettings, browseObjects, searchForFacetValues, generateSecuredApiKey, addApiKey, updateApiKey

About this parameter# A

The minimum number of characters in a query word before typos are considered.

Examples# A

Set the default minimum character count to allow one typo#

1
2
3
$index->setSettings([
  'minWordSizefor1Typo' => 4
]);

Override the default minimum character count to allow one typo for the current search#

1
2
3
$results = $index->search('query', [
  'minWordSizefor1Typo' => 2
]);
Did you find this page helpful?
PHP v3