Skip to main content
  • Type: list<string>
  • Default: []
  • Scope: settings
The disableTypoToleranceOnWords parameter lists words that must match exactly in search queries. This is useful for acronyms like "PHP", "MySQL", "MAMP". Splitting and concatenation are also turned off for the specified words.
There’s no hard limit on the number of words you can include, but adding too many can slow down getSettings operations and degrade performance in the Algolia dashboard.
See also:

Example

Current API clients

var response = await client.SetSettingsAsync(
  "ALGOLIA_INDEX_NAME",
  new IndexSettings
  {
    DisableTypoToleranceOnWords = new List<string> { "wheel", "1X2BCD" },
  }
);
IndexSettings settings = new IndexSettings();
settings.DisableTypoToleranceOnWords = new List
{
    "wheel",
    "1X2BCD"
};

index.SetSettings(settings);
I