mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-12-24 13:40:31 +01:00
add the proximity criterion
This commit is contained in:
parent
49e4cc3daf
commit
aee49bb3cd
@ -67,3 +67,7 @@ harness = false
|
|||||||
[[bench]]
|
[[bench]]
|
||||||
name = "words"
|
name = "words"
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "proximity"
|
||||||
|
harness = false
|
||||||
|
33
milli/benches/proximity.rs
Normal file
33
milli/benches/proximity.rs
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
mod utils;
|
||||||
|
|
||||||
|
use std::time::Duration;
|
||||||
|
use criterion::{criterion_group, criterion_main, BenchmarkId};
|
||||||
|
|
||||||
|
fn bench_proximity(c: &mut criterion::Criterion) {
|
||||||
|
let index = utils::base_setup(Some(vec!["words".to_string()]));
|
||||||
|
|
||||||
|
let queries = [
|
||||||
|
"black saint sinner lady ",
|
||||||
|
"les dangeureuses 1960 ",
|
||||||
|
"The Disneyland Sing-Alone song ",
|
||||||
|
"Under Great Northern Lights ",
|
||||||
|
"7000 Danses Un Jour Dans Notre Vie",
|
||||||
|
];
|
||||||
|
|
||||||
|
let mut group = c.benchmark_group("proximity");
|
||||||
|
group.measurement_time(Duration::from_secs(10));
|
||||||
|
|
||||||
|
for query in &queries {
|
||||||
|
group.bench_with_input(BenchmarkId::from_parameter(query), &query, |b, &query| {
|
||||||
|
b.iter(|| {
|
||||||
|
let rtxn = index.read_txn().unwrap();
|
||||||
|
let _documents_ids = index.search(&rtxn).query(*query).optional_words(false).execute().unwrap();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
group.finish();
|
||||||
|
}
|
||||||
|
|
||||||
|
criterion_group!(benches, bench_proximity);
|
||||||
|
criterion_main!(benches);
|
Loading…
x
Reference in New Issue
Block a user