mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-03 20:07:09 +02:00
Tune the words prefixes threshold to compute for 1/1000 instead
This commit is contained in:
parent
f376c6a728
commit
07784c8990
3 changed files with 3 additions and 2 deletions
|
@ -41,7 +41,7 @@ impl<'t, 'u, 'i> WordsPrefixes<'t, 'u, 'i> {
|
|||
chunk_fusing_shrink_size: None,
|
||||
max_nb_chunks: None,
|
||||
max_memory: None,
|
||||
threshold: 0.01, // 1%
|
||||
threshold: 0.1 / 100.0, // .01%
|
||||
max_prefix_length: 4,
|
||||
_update_id: update_id,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue