mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-06-07 04:35:37 +00:00
More or less make sure that the facets are going to be incremental
This commit is contained in:
parent
1079c55ea5
commit
8a7a465c19
@ -104,8 +104,8 @@ pub fn merge_and_send_facet_docids<'extractor>(
|
||||
rtxn: &RoTxn,
|
||||
docids_sender: FacetDocidsSender,
|
||||
) -> Result<FacetFieldIdsDelta> {
|
||||
let max_string_count = (index.facet_id_string_docids.len(rtxn)? / 500) as usize;
|
||||
let max_number_count = (index.facet_id_f64_docids.len(rtxn)? / 500) as usize;
|
||||
let max_string_count = (index.facet_id_string_docids.len(rtxn)? * 500) as usize;
|
||||
let max_number_count = (index.facet_id_f64_docids.len(rtxn)? * 500) as usize;
|
||||
transpose_and_freeze_caches(&mut caches)?
|
||||
.into_par_iter()
|
||||
.map(|frozen| {
|
||||
|
Loading…
x
Reference in New Issue
Block a user