mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 13:24:27 +01:00
Move the AvailableDocumentsIds iterator into the update module
This commit is contained in:
parent
b14cca2ad9
commit
60347a5483
@ -1,4 +1,3 @@
|
||||
mod available_documents_ids;
|
||||
mod criterion;
|
||||
mod fields_ids_map;
|
||||
mod index;
|
||||
@ -16,7 +15,6 @@ use std::collections::HashMap;
|
||||
use std::hash::BuildHasherDefault;
|
||||
use fxhash::{FxHasher32, FxHasher64};
|
||||
|
||||
pub use self::available_documents_ids::AvailableDocumentsIds;
|
||||
pub use self::criterion::{Criterion, default_criteria};
|
||||
pub use self::fields_ids_map::FieldsIdsMap;
|
||||
pub use self::index::Index;
|
||||
|
@ -23,7 +23,8 @@ use warp::{Filter, http::Response};
|
||||
|
||||
use crate::indexing::{self, IndexerOpt, Transform, TransformOutput};
|
||||
use crate::tokenizer::{simple_tokenizer, TokenType};
|
||||
use crate::{Index, UpdateStore, SearchResult, AvailableDocumentsIds};
|
||||
use crate::update::AvailableDocumentsIds;
|
||||
use crate::{Index, UpdateStore, SearchResult};
|
||||
|
||||
#[derive(Debug, StructOpt)]
|
||||
/// The HTTP main server of the milli project.
|
||||
|
@ -1,5 +1,7 @@
|
||||
mod available_documents_ids;
|
||||
mod update_builder;
|
||||
mod update_store;
|
||||
|
||||
pub use self::available_documents_ids::AvailableDocumentsIds;
|
||||
pub use self::update_builder::UpdateBuilder;
|
||||
pub use self::update_store::UpdateStore;
|
||||
|
Loading…
Reference in New Issue
Block a user