mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-23 18:45:06 +08:00
69 lines
2.1 KiB
Rust
69 lines
2.1 KiB
Rust
use std::cmp::{self, Ordering};
|
|
use slice_group_by::GroupBy;
|
|
use crate::bucket_sort::{SimpleMatch};
|
|
use crate::{RawDocument, MResult};
|
|
use super::{Criterion, Context, ContextMut, prepare_bare_matches};
|
|
|
|
const MAX_DISTANCE: u16 = 8;
|
|
|
|
pub struct Proximity;
|
|
|
|
impl Criterion for Proximity {
|
|
fn name(&self) -> &str { "proximity" }
|
|
|
|
fn prepare<'h, 'p, 'tag, 'txn, 'q, 'r>(
|
|
&self,
|
|
ctx: ContextMut<'h, 'p, 'tag, 'txn, 'q>,
|
|
documents: &mut [RawDocument<'r, 'tag>],
|
|
) -> MResult<()>
|
|
{
|
|
prepare_bare_matches(documents, ctx.postings_lists, ctx.query_mapping);
|
|
Ok(())
|
|
}
|
|
|
|
fn evaluate(&self, _ctx: &Context, lhs: &RawDocument, rhs: &RawDocument) -> Ordering {
|
|
fn index_proximity(lhs: u16, rhs: u16) -> u16 {
|
|
if lhs < rhs {
|
|
cmp::min(rhs - lhs, MAX_DISTANCE)
|
|
} else {
|
|
cmp::min(lhs - rhs, MAX_DISTANCE) + 1
|
|
}
|
|
}
|
|
|
|
fn attribute_proximity(lhs: SimpleMatch, rhs: SimpleMatch) -> u16 {
|
|
if lhs.attribute != rhs.attribute { MAX_DISTANCE }
|
|
else { index_proximity(lhs.word_index, rhs.word_index) }
|
|
}
|
|
|
|
fn min_proximity(lhs: &[SimpleMatch], rhs: &[SimpleMatch]) -> u16 {
|
|
let mut min_prox = u16::max_value();
|
|
for a in lhs {
|
|
for b in rhs {
|
|
let prox = attribute_proximity(*a, *b);
|
|
min_prox = cmp::min(min_prox, prox);
|
|
}
|
|
}
|
|
min_prox
|
|
}
|
|
|
|
fn matches_proximity(matches: &[SimpleMatch],) -> u16 {
|
|
let mut proximity = 0;
|
|
let mut iter = matches.linear_group_by_key(|m| m.query_index);
|
|
|
|
// iterate over groups by windows of size 2
|
|
let mut last = iter.next();
|
|
while let (Some(lhs), Some(rhs)) = (last, iter.next()) {
|
|
proximity += min_proximity(lhs, rhs);
|
|
last = Some(rhs);
|
|
}
|
|
|
|
proximity
|
|
}
|
|
|
|
let lhs = matches_proximity(&lhs.processed_matches);
|
|
let rhs = matches_proximity(&rhs.processed_matches);
|
|
|
|
lhs.cmp(&rhs)
|
|
}
|
|
}
|