mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-12-23 13:10:06 +01:00
Add first benchmarks on formatting
This commit is contained in:
parent
827cedcd15
commit
5809d3ae0d
@ -39,3 +39,7 @@ harness = false
|
|||||||
[[bench]]
|
[[bench]]
|
||||||
name = "indexing"
|
name = "indexing"
|
||||||
harness = false
|
harness = false
|
||||||
|
|
||||||
|
[[bench]]
|
||||||
|
name = "formatting"
|
||||||
|
harness = false
|
||||||
|
68
benchmarks/benches/formatting.rs
Normal file
68
benchmarks/benches/formatting.rs
Normal file
@ -0,0 +1,68 @@
|
|||||||
|
use criterion::{criterion_group, criterion_main};
|
||||||
|
use milli::tokenizer::{Analyzer, AnalyzerConfig};
|
||||||
|
use milli::{FormatOptions, MatcherBuilder, MatchingWord, MatchingWords};
|
||||||
|
|
||||||
|
#[cfg(target_os = "linux")]
|
||||||
|
#[global_allocator]
|
||||||
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
||||||
|
|
||||||
|
struct Conf<'a> {
|
||||||
|
name: &'a str,
|
||||||
|
text: &'a str,
|
||||||
|
matching_words: MatcherBuilder,
|
||||||
|
}
|
||||||
|
|
||||||
|
fn bench_formatting(c: &mut criterion::Criterion) {
|
||||||
|
#[rustfmt::skip]
|
||||||
|
let confs = &[
|
||||||
|
Conf {
|
||||||
|
name: "'the door d'",
|
||||||
|
text: r#"He used to do the door sounds in "Star Trek" with his mouth, phssst, phssst. The MD-11 passenger and cargo doors also tend to behave like electromagnetic apertures, because the doors do not have continuous electrical contact with the door frames around the door perimeter. But Theodor said that the doors don't work."#,
|
||||||
|
matching_words: MatcherBuilder::from_matching_words(MatchingWords::new(vec![
|
||||||
|
(vec![MatchingWord::new("t".to_string(), 0, false), MatchingWord::new("he".to_string(), 0, false)], vec![0]),
|
||||||
|
(vec![MatchingWord::new("the".to_string(), 0, false)], vec![0]),
|
||||||
|
(vec![MatchingWord::new("door".to_string(), 1, false)], vec![1]),
|
||||||
|
(vec![MatchingWord::new("do".to_string(), 0, false), MatchingWord::new("or".to_string(), 0, false)], vec![0]),
|
||||||
|
(vec![MatchingWord::new("thedoor".to_string(), 1, false)], vec![0, 1]),
|
||||||
|
(vec![MatchingWord::new("d".to_string(), 0, true)], vec![2]),
|
||||||
|
(vec![MatchingWord::new("thedoord".to_string(), 1, true)], vec![0, 1, 2]),
|
||||||
|
(vec![MatchingWord::new("doord".to_string(), 1, true)], vec![1, 2]),
|
||||||
|
])),
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|
||||||
|
let format_options = &[
|
||||||
|
FormatOptions { highlight: false, crop: None },
|
||||||
|
FormatOptions { highlight: true, crop: None },
|
||||||
|
FormatOptions { highlight: false, crop: Some(10) },
|
||||||
|
FormatOptions { highlight: true, crop: Some(10) },
|
||||||
|
FormatOptions { highlight: false, crop: Some(20) },
|
||||||
|
FormatOptions { highlight: true, crop: Some(20) },
|
||||||
|
];
|
||||||
|
|
||||||
|
for option in format_options {
|
||||||
|
let highlight = if option.highlight { "highlight" } else { "no-highlight" };
|
||||||
|
|
||||||
|
let name = match option.crop {
|
||||||
|
Some(size) => format!("{}-crop({})", highlight, size),
|
||||||
|
None => format!("{}-no-crop", highlight),
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut group = c.benchmark_group(&name);
|
||||||
|
for conf in confs {
|
||||||
|
group.bench_function(conf.name, |b| {
|
||||||
|
b.iter(|| {
|
||||||
|
let analyzer = Analyzer::new(AnalyzerConfig::<Vec<u8>>::default());
|
||||||
|
let analyzed = analyzer.analyze(&conf.text);
|
||||||
|
let tokens: Vec<_> = analyzed.tokens().collect();
|
||||||
|
let mut matcher = conf.matching_words.build(&tokens[..], conf.text);
|
||||||
|
matcher.format(option.clone());
|
||||||
|
})
|
||||||
|
});
|
||||||
|
}
|
||||||
|
group.finish();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
criterion_group!(benches, bench_formatting);
|
||||||
|
criterion_main!(benches);
|
@ -37,8 +37,8 @@ pub use self::heed_codec::{
|
|||||||
};
|
};
|
||||||
pub use self::index::Index;
|
pub use self::index::Index;
|
||||||
pub use self::search::{
|
pub use self::search::{
|
||||||
FacetDistribution, Filter, FormatOptions, MatchBounds, MatcherBuilder, MatchingWords, Search,
|
FacetDistribution, Filter, FormatOptions, MatchBounds, MatcherBuilder, MatchingWord,
|
||||||
SearchResult,
|
MatchingWords, Search, SearchResult,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub type Result<T> = std::result::Result<T, error::Error>;
|
pub type Result<T> = std::result::Result<T, error::Error>;
|
||||||
|
@ -1,11 +1,9 @@
|
|||||||
use std::borrow::Cow;
|
use std::borrow::Cow;
|
||||||
|
|
||||||
pub use matching_words::MatchingWords;
|
use matching_words::{MatchType, PartialMatch, PrimitiveWordId};
|
||||||
use matching_words::{MatchType, PrimitiveWordId};
|
pub use matching_words::{MatchingWord, MatchingWords};
|
||||||
use meilisearch_tokenizer::token::{SeparatorKind, Token};
|
use meilisearch_tokenizer::token::{SeparatorKind, Token};
|
||||||
|
|
||||||
use crate::search::matches::matching_words::PartialMatch;
|
|
||||||
|
|
||||||
pub mod matching_words;
|
pub mod matching_words;
|
||||||
|
|
||||||
const DEFAULT_CROP_MARKER: &'static str = "…";
|
const DEFAULT_CROP_MARKER: &'static str = "…";
|
||||||
|
@ -17,7 +17,9 @@ use roaring::bitmap::RoaringBitmap;
|
|||||||
|
|
||||||
pub use self::facet::{FacetDistribution, FacetNumberIter, Filter};
|
pub use self::facet::{FacetDistribution, FacetNumberIter, Filter};
|
||||||
use self::fst_utils::{Complement, Intersection, StartsWith, Union};
|
use self::fst_utils::{Complement, Intersection, StartsWith, Union};
|
||||||
pub use self::matches::{FormatOptions, MatchBounds, Matcher, MatcherBuilder, MatchingWords};
|
pub use self::matches::{
|
||||||
|
FormatOptions, MatchBounds, Matcher, MatcherBuilder, MatchingWord, MatchingWords,
|
||||||
|
};
|
||||||
use self::query_tree::QueryTreeBuilder;
|
use self::query_tree::QueryTreeBuilder;
|
||||||
use crate::error::UserError;
|
use crate::error::UserError;
|
||||||
use crate::search::criteria::r#final::{Final, FinalResult};
|
use crate::search::criteria::r#final::{Final, FinalResult};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user