add the proximity criterion

This commit is contained in:
tamo 2021-04-07 11:04:53 +02:00 committed by Tamo
parent 49e4cc3daf
commit aee49bb3cd
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69
2 changed files with 37 additions and 0 deletions

View File

@ -67,3 +67,7 @@ harness = false
[[bench]]
name = "words"
harness = false
[[bench]]
name = "proximity"
harness = false

View 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);