-
Notifications
You must be signed in to change notification settings - Fork 33
Closed
Labels
good first issueGood for newcomersGood for newcomers
Description
Also, if you are a maintainer, feel free to add any clarification and instruction about this issue.
Related to:
- parent issue: Changes regarding Meilisearch v0.27.0 integration-guides#190
- specification: Settings API - Typo Tolerance specifications#117
Add a typo_tolerance index settings resource to manage customization of the typo tolerance feature at the index level.
# meili_search.yaml
meili_search:
indices:
- name: posts
class: App\Entity\Post
settings:
# attributesForFaceting: ['genres', 'publishedAt']
typoTolerance:
enabled: true
disableOnAttributes: ['title']
disableOnWords: ['york']
minWordSizeForTypos:
oneTypo: 5
twoTypos: 9More information about what the typo-tolerance field does could be checked in the spec.
You could check the other customization methods for reference like: synonyms.
TODO:
- Add the
typo_toleranceconfiguration - Add tests
Metadata
Metadata
Assignees
Labels
good first issueGood for newcomersGood for newcomers