mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
DB BREAKING: raise limit of word count from 10 to 30.
This commit is contained in:
parent
c15c076da9
commit
9f37b61666
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ fn drain_document_fid_wordcount_into_sorter(
|
|||
let mut key_buffer = Vec::new();
|
||||
|
||||
for (fid, count) in document_fid_wordcount.drain() {
|
||||
if count <= 10 {
|
||||
if count <= 30 {
|
||||
key_buffer.clear();
|
||||
key_buffer.extend_from_slice(&fid.to_be_bytes());
|
||||
key_buffer.push(count as u8);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue