mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 18:45:06 +08:00
use fixed number of candidates as a threshold
This commit is contained in:
parent
a776ec9718
commit
1e3f05db8f
@ -19,9 +19,9 @@ use crate::search::WordDerivationsCache;
|
|||||||
use crate::{FieldsIdsMap, FieldId, Index};
|
use crate::{FieldsIdsMap, FieldId, Index};
|
||||||
use super::{Criterion, CriterionResult};
|
use super::{Criterion, CriterionResult};
|
||||||
|
|
||||||
/// If the number of candidates is lower or equal to the specified % of total number of documents,
|
/// Threshold on the number of candidates that will make
|
||||||
/// use simple sort. Otherwise, use facet database.
|
/// the system to choose between one algorithm or another.
|
||||||
const CANDIDATES_THRESHOLD: f64 = 0.1;
|
const CANDIDATES_THRESHOLD: u64 = 1000;
|
||||||
|
|
||||||
pub struct AscDesc<'t> {
|
pub struct AscDesc<'t> {
|
||||||
index: &'t Index,
|
index: &'t Index,
|
||||||
@ -252,11 +252,9 @@ fn facet_ordered<'t>(
|
|||||||
candidates: RoaringBitmap,
|
candidates: RoaringBitmap,
|
||||||
) -> anyhow::Result<Box<dyn Iterator<Item = heed::Result<RoaringBitmap>> + 't>>
|
) -> anyhow::Result<Box<dyn Iterator<Item = heed::Result<RoaringBitmap>> + 't>>
|
||||||
{
|
{
|
||||||
let number_of_documents = index.number_of_documents(&rtxn)? as f64;
|
|
||||||
|
|
||||||
match facet_type {
|
match facet_type {
|
||||||
FacetType::Float => {
|
FacetType::Float => {
|
||||||
if candidates.len() as f64 / number_of_documents * 100.0 <= CANDIDATES_THRESHOLD {
|
if candidates.len() <= CANDIDATES_THRESHOLD {
|
||||||
let iter = iterative_facet_ordered_iter::<FieldDocIdFacetF64Codec, f64, OrderedFloat<f64>>(
|
let iter = iterative_facet_ordered_iter::<FieldDocIdFacetF64Codec, f64, OrderedFloat<f64>>(
|
||||||
index, rtxn, field_id, ascending, candidates,
|
index, rtxn, field_id, ascending, candidates,
|
||||||
)?;
|
)?;
|
||||||
@ -272,7 +270,7 @@ fn facet_ordered<'t>(
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
FacetType::Integer => {
|
FacetType::Integer => {
|
||||||
if candidates.len() as f64 / number_of_documents * 100.0 <= CANDIDATES_THRESHOLD {
|
if candidates.len() <= CANDIDATES_THRESHOLD {
|
||||||
let iter = iterative_facet_ordered_iter::<FieldDocIdFacetI64Codec, i64, i64>(
|
let iter = iterative_facet_ordered_iter::<FieldDocIdFacetI64Codec, i64, i64>(
|
||||||
index, rtxn, field_id, ascending, candidates,
|
index, rtxn, field_id, ascending, candidates,
|
||||||
)?;
|
)?;
|
||||||
|
Loading…
Reference in New Issue
Block a user