commit: 40280cc273ad7f2b355846e2f41b9873a8d5ff2c
parent a5bb7f9345ff73469c0d776bce5455ec4f27b4ee
Author: Ekaterina Vaartis <vaartis@kotobank.ch>
Date: Sat, 28 Aug 2021 15:59:13 +0300
Reorder ranking rules for (maybe) better results
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/mix/tasks/pleroma/search/meilisearch.ex b/lib/mix/tasks/pleroma/search/meilisearch.ex
@@ -18,12 +18,12 @@ defmodule Mix.Tasks.Pleroma.Search.Meilisearch do
"/indexes/objects/settings/ranking-rules",
[
"desc(published)",
- "typo",
"words",
+ "exactness",
"proximity",
- "attribute",
"wordsPosition",
- "exactness"
+ "typo",
+ "attribute"
]
)