mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-27 15:24:27 +01:00
32 lines
940 B
Rust
32 lines
940 B
Rust
use std::cmp::Ordering;
|
|
use crate::{RawDocument, MResult};
|
|
use super::{Criterion, Context, ContextMut, prepare_query_distances};
|
|
|
|
pub struct Words;
|
|
|
|
impl Criterion for Words {
|
|
fn name(&self) -> &str { "words" }
|
|
|
|
fn prepare<'h, 'p, 'tag, 'txn, 'q, 'r>(
|
|
&self,
|
|
ctx: ContextMut<'h, 'p, 'tag, 'txn, 'q>,
|
|
documents: &mut [RawDocument<'r, 'tag>],
|
|
) -> MResult<()>
|
|
{
|
|
prepare_query_distances(documents, ctx.query_mapping, ctx.postings_lists);
|
|
Ok(())
|
|
}
|
|
|
|
fn evaluate(&self, _ctx: &Context, lhs: &RawDocument, rhs: &RawDocument) -> Ordering {
|
|
#[inline]
|
|
fn number_of_query_words(distances: &[Option<u8>]) -> usize {
|
|
distances.iter().cloned().filter(Option::is_some).count()
|
|
}
|
|
|
|
let lhs = number_of_query_words(&lhs.processed_distances);
|
|
let rhs = number_of_query_words(&rhs.processed_distances);
|
|
|
|
lhs.cmp(&rhs).reverse()
|
|
}
|
|
}
|