mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-07-04 20:37:15 +02:00
Divide threshold by ten
This commit is contained in:
parent
f4a6261dea
commit
eada6de261
1 changed files with 1 additions and 1 deletions
|
@ -149,7 +149,7 @@ impl<'i> FacetsUpdate<'i> {
|
|||
self.index.set_updated_at(wtxn, &OffsetDateTime::now_utc())?;
|
||||
|
||||
// See self::comparison_bench::benchmark_facet_indexing
|
||||
if self.data_size >= (self.database.len(wtxn)? / 50) {
|
||||
if self.data_size >= (self.database.len(wtxn)? / 500) {
|
||||
let field_ids =
|
||||
self.index.faceted_fields_ids(wtxn)?.iter().copied().collect::<Vec<_>>();
|
||||
let bulk_update = FacetsUpdateBulk::new(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue