Waiting for a settings update that do not change anything #591
qdequele
started this conversation in
Feedback & Feature Proposal
Replies: 1 comment 2 replies
-
Apparently, it's probably fixed in v1.0, I will have to test it :) |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello @meilisearch/engine-team, I'm doing a demo on the IMDB database with v0.30.5. The database is 2.2M movie documents, and basically, for each movie, I have the title that has been translated into several languages. I would have instead per movies added all the translations in an array, but I wanted to show the localized title, and I wanted to create a big dataset. I'm trying to change my settings (mostly the ranking rules) to improve relevancy. Here are my database stats.
The first thing I did was obviously to put all my text fields as searchable, text arrays, numbers, and boolean fields as filterable, and numbers as sortable. Then I tried multiple times to change the ranking rules. First, I added the ranking rule
rating:desc
, then I changed it todate:desc
, then byvotes-count:desc
, and finally byvotes-count:desc, is-original-title:desc
. Each time it takes 5min to be able to test the new search. 5min is not a lot, but enough to go do something else and forget what I was doing. I created this issue because I think it's possible to have 0s update instead of 5min. It would improve the UX in general but mainly on the Cloud when we will have UI for configuring the indexes.Beta Was this translation helpful? Give feedback.
All reactions