2021-05-25 17:09:14 +02:00
|
|
|
mod datasets_paths;
|
2021-04-14 12:09:51 +02:00
|
|
|
mod utils;
|
|
|
|
|
|
|
|
use criterion::{criterion_group, criterion_main};
|
|
|
|
use milli::update::Settings;
|
|
|
|
use utils::Conf;
|
|
|
|
|
2022-08-10 12:31:09 +02:00
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: mimalloc::MiMalloc = mimalloc::MiMalloc;
|
|
|
|
|
2021-04-14 12:09:51 +02:00
|
|
|
fn base_conf(builder: &mut Settings) {
|
2021-06-16 18:33:33 +02:00
|
|
|
let displayed_fields = ["title", "body", "url"].iter().map(|s| s.to_string()).collect();
|
2021-04-14 12:09:51 +02:00
|
|
|
builder.set_displayed_fields(displayed_fields);
|
|
|
|
|
|
|
|
let searchable_fields = ["title", "body"].iter().map(|s| s.to_string()).collect();
|
|
|
|
builder.set_searchable_fields(searchable_fields);
|
|
|
|
}
|
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
#[rustfmt::skip]
|
2021-04-14 12:09:51 +02:00
|
|
|
const BASE_CONF: Conf = Conf {
|
2021-05-25 17:09:14 +02:00
|
|
|
dataset: datasets_paths::SMOL_WIKI_ARTICLES,
|
2021-04-14 12:09:51 +02:00
|
|
|
queries: &[
|
|
|
|
"mingus ", // 46 candidates
|
|
|
|
"miles davis ", // 159
|
|
|
|
"rock and roll ", // 1007
|
|
|
|
"machine ", // 3448
|
|
|
|
"spain ", // 7002
|
|
|
|
"japan ", // 10.593
|
|
|
|
"france ", // 17.616
|
2021-04-14 16:26:21 +02:00
|
|
|
"film ", // 24.959
|
2021-04-14 12:09:51 +02:00
|
|
|
],
|
|
|
|
configure: base_conf,
|
|
|
|
..Conf::BASE
|
|
|
|
};
|
|
|
|
|
|
|
|
fn bench_songs(c: &mut criterion::Criterion) {
|
|
|
|
let basic_with_quote: Vec<String> = BASE_CONF
|
|
|
|
.queries
|
|
|
|
.iter()
|
|
|
|
.map(|s| {
|
2021-06-16 18:33:33 +02:00
|
|
|
s.trim().split(' ').map(|s| format!(r#""{}""#, s)).collect::<Vec<String>>().join(" ")
|
2021-04-14 12:09:51 +02:00
|
|
|
})
|
|
|
|
.collect();
|
2021-06-16 18:33:33 +02:00
|
|
|
let basic_with_quote: &[&str] =
|
|
|
|
&basic_with_quote.iter().map(|s| s.as_str()).collect::<Vec<&str>>();
|
2021-04-14 12:09:51 +02:00
|
|
|
|
2021-06-16 18:33:33 +02:00
|
|
|
#[rustfmt::skip]
|
2021-04-14 12:09:51 +02:00
|
|
|
let confs = &[
|
|
|
|
/* first we bench each criterion alone */
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "proximity",
|
|
|
|
queries: &[
|
|
|
|
"herald sings ",
|
|
|
|
"april paris ",
|
|
|
|
"tea two ",
|
|
|
|
"diesel engine ",
|
|
|
|
],
|
|
|
|
criterion: Some(&["proximity"]),
|
|
|
|
optional_words: false,
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "typo",
|
|
|
|
queries: &[
|
|
|
|
"migrosoft ",
|
|
|
|
"linax ",
|
|
|
|
"Disnaylande ",
|
|
|
|
"phytogropher ",
|
|
|
|
"nympalidea ",
|
|
|
|
"aritmetric ",
|
|
|
|
"the fronce ",
|
|
|
|
"sisan ",
|
|
|
|
],
|
|
|
|
criterion: Some(&["typo"]),
|
|
|
|
optional_words: false,
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "words",
|
|
|
|
queries: &[
|
|
|
|
"the black saint and the sinner lady and the good doggo ", // four words to pop, 27 results
|
2021-06-03 10:33:42 +02:00
|
|
|
"Kameya Tokujirō mingus monk ", // two words to pop, 55
|
2021-04-14 12:09:51 +02:00
|
|
|
"Ulrich Hensel meilisearch milli ", // two words to pop, 306
|
|
|
|
"Idaho Bellevue pizza ", // one word to pop, 800
|
|
|
|
"Abraham machin ", // one word to pop, 1141
|
|
|
|
],
|
|
|
|
criterion: Some(&["words"]),
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
/* the we bench some global / normal search with all the default criterion in the default
|
|
|
|
* order */
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "basic placeholder",
|
|
|
|
queries: &[""],
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "basic without quote",
|
|
|
|
queries: &BASE_CONF
|
|
|
|
.queries
|
|
|
|
.iter()
|
|
|
|
.map(|s| s.trim()) // we remove the space at the end of each request
|
|
|
|
.collect::<Vec<&str>>(),
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "basic with quote",
|
|
|
|
queries: basic_with_quote,
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
utils::Conf {
|
|
|
|
group_name: "prefix search",
|
|
|
|
queries: &[
|
|
|
|
"t", // 453k results
|
|
|
|
"c", // 405k
|
|
|
|
"g", // 318k
|
|
|
|
"j", // 227k
|
|
|
|
"q", // 71k
|
|
|
|
"x", // 17k
|
|
|
|
],
|
|
|
|
..BASE_CONF
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
utils::run_benches(c, confs);
|
|
|
|
}
|
|
|
|
|
|
|
|
criterion_group!(benches, bench_songs);
|
|
|
|
criterion_main!(benches);
|