mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-22 21:04:27 +01:00
Add a threshold on proximity when choosing between linear/set algorithm
This commit is contained in:
parent
5a10de1b9f
commit
31607bf9cd
@ -55,7 +55,7 @@ impl<'t> Criterion for Proximity<'t> {
|
||||
if self.proximity as usize > *max_prox {
|
||||
self.state = None; // reset state
|
||||
} else {
|
||||
let mut new_candidates = if candidates.len() <= 1000 {
|
||||
let mut new_candidates = if candidates.len() <= 1000 && self.proximity > 0 {
|
||||
if let Some(cache) = self.plane_sweep_cache.as_mut() {
|
||||
match cache.next() {
|
||||
Some((p, candidates)) => {
|
||||
|
Loading…
Reference in New Issue
Block a user