mirror of
https://github.com/HDInnovations/UNIT3D-Community-Edition.git
synced 2026-04-22 18:20:31 -05:00
update: change meilisearch proximity precision to byAttribute
This setting is more useful for full text search inside paragraphs of content and we already have it at the bottom of our ranking rules. The docs (https://www.meilisearch.com/docs/reference/api/settings#proximity-precision) mention a significant indexing performance boost when this is switched to `byAttribute` so let's take advantage of that. Requires running `php artisan scout:sync-index-settings`.
This commit is contained in:
+2
-1
@@ -236,7 +236,8 @@ return [
|
||||
'typo',
|
||||
'proximity',
|
||||
],
|
||||
'facetSearch' => false,
|
||||
'facetSearch' => false,
|
||||
'proximityPrecision' => 'byAttribute',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user