mirror of
https://github.com/meilisearch/MeiliSearch
synced 2025-01-22 19:27:27 +01:00
Publish Matcher
This commit is contained in:
parent
4428cb5909
commit
734d0899d3
@ -1,12 +1,12 @@
|
||||
use std::borrow::Cow;
|
||||
|
||||
use matching_words::MatchingWords;
|
||||
pub use matching_words::MatchingWords;
|
||||
use meilisearch_tokenizer::token::SeparatorKind;
|
||||
use meilisearch_tokenizer::{Analyzer, AnalyzerConfig, Token};
|
||||
|
||||
use crate::search::query_tree::Operation;
|
||||
|
||||
pub mod matching_words;
|
||||
mod matching_words;
|
||||
|
||||
const DEFAULT_CROP_SIZE: usize = 10;
|
||||
const DEFAULT_CROP_MARKER: &'static str = "…";
|
||||
|
@ -17,7 +17,7 @@ use roaring::bitmap::RoaringBitmap;
|
||||
|
||||
pub use self::facet::{FacetDistribution, FacetNumberIter, Filter};
|
||||
use self::fst_utils::{Complement, Intersection, StartsWith, Union};
|
||||
pub use self::matches::matching_words::MatchingWords;
|
||||
pub use self::matches::{Matcher, MatcherBuilder, MatchingWords};
|
||||
use self::query_tree::QueryTreeBuilder;
|
||||
use crate::error::UserError;
|
||||
use crate::search::criteria::r#final::{Final, FinalResult};
|
||||
|
Loading…
x
Reference in New Issue
Block a user