Experimental feature: Customize proximity precision #710
Replies: 1 comment
-
Closing this discussion, |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Meilisearch v1.6 (released January) introduces the
proximityPrecision
index setting.Experimental feature abstract
Setting
proximityPrecision
towordScale
orattributeScale
experimental 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-features
passing"proximityPrecision": "attributeScale"|"wordScale"
. The default value is"wordScale"
.proximityPrecision
attribute, this will trigger a full reindexing.Beta Was this translation helpful? Give feedback.
All reactions