Experimental feature: Customize proximity precision #710
Replies: 1 comment
|
Closing this discussion, |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Meilisearch v1.6 (released January) introduces the
proximityPrecisionindex setting.Experimental feature abstract
Setting
proximityPrecisiontowordScaleorattributeScaleexperimental feature will change how Meilisearch considers the distance between query words. This setting allows the user to choose between having a precise distance computation between query words but a longer indexing time (if set towordScale) and a less precise distance computation between query words but a shorter indexing time (if set toattributeScale).See the public API definition for more info:
https://www.notion.so/meilisearch/Alternative-Proposal-aa69c2bab2c3402bab9340ae4def4577?pvs=4
How to use the feature?
PATCH /experimental-featurespassing"proximityPrecision": "attributeScale"|"wordScale". The default value is"wordScale".proximityPrecisionattribute, this will trigger a full reindexing.All reactions