mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-05-25 09:03:59 +02:00
34 lines
920 B
Rust
34 lines
920 B
Rust
use std::cmp::Ordering;
|
|
use std::ops::Deref;
|
|
|
|
use rocksdb::DB;
|
|
use slice_group_by::GroupBy;
|
|
|
|
use crate::database::DatabaseView;
|
|
use crate::rank::{match_query_index, Document};
|
|
use crate::rank::criterion::Criterion;
|
|
use crate::Match;
|
|
|
|
#[inline]
|
|
fn sum_matches_attributes(matches: &[Match]) -> usize {
|
|
// note that GroupBy will never return an empty group
|
|
// so we can do this assumption safely
|
|
matches.linear_group_by(match_query_index).map(|group| {
|
|
unsafe { group.get_unchecked(0).attribute.attribute() as usize }
|
|
}).sum()
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
pub struct SumOfWordsAttribute;
|
|
|
|
impl<D> Criterion<D> for SumOfWordsAttribute
|
|
where D: Deref<Target=DB>
|
|
{
|
|
fn evaluate(&self, lhs: &Document, rhs: &Document, _: &DatabaseView<D>) -> Ordering {
|
|
let lhs = sum_matches_attributes(&lhs.matches);
|
|
let rhs = sum_matches_attributes(&rhs.matches);
|
|
|
|
lhs.cmp(&rhs)
|
|
}
|
|
}
|