Introduce the query words mapping along with the query tree

This commit is contained in:
Clément Renault
2020-01-13 13:29:47 +01:00
parent 4f7a7ea0bb
commit da8abebfa2
6 changed files with 523 additions and 41 deletions

View File

@ -11,6 +11,7 @@ mod levenshtein;
mod number;
mod query_builder;
mod query_tree;
mod query_words_mapper;
mod ranked_map;
mod raw_document;
mod reordered_attrs;
@ -28,6 +29,7 @@ pub use self::raw_document::RawDocument;
pub use self::store::Index;
pub use self::update::{EnqueuedUpdateResult, ProcessedUpdateResult, UpdateStatus, UpdateType};
pub use meilisearch_types::{DocIndex, DocumentId, Highlight};
pub use query_words_mapper::QueryWordsMapper;
use compact_arena::SmallArena;
use crate::bucket_sort::{QueryWordAutomaton, PostingsListView};