2021-04-07 19:33:44 +08:00
|
|
|
pub use self::available_documents_ids::AvailableDocumentsIds;
|
|
|
|
pub use self::clear_documents::ClearDocuments;
|
2022-12-19 16:47:54 +08:00
|
|
|
pub use self::delete_documents::{DeleteDocuments, DeletionStrategy, DocumentDeletionResult};
|
2022-08-31 19:03:36 +08:00
|
|
|
pub use self::facet::bulk::FacetsUpdateBulk;
|
2022-09-05 23:31:26 +08:00
|
|
|
pub use self::facet::incremental::FacetsUpdateIncrementalInner;
|
2021-12-08 21:12:07 +08:00
|
|
|
pub use self::index_documents::{
|
2023-06-13 23:37:35 +08:00
|
|
|
merge_cbo_roaring_bitmaps, merge_roaring_bitmaps, DocumentAdditionResult, DocumentId,
|
|
|
|
IndexDocuments, IndexDocumentsConfig, IndexDocumentsMethod, MergeFn,
|
2021-12-08 21:12:07 +08:00
|
|
|
};
|
|
|
|
pub use self::indexer_config::IndexerConfig;
|
2022-12-08 18:53:21 +08:00
|
|
|
pub use self::prefix_word_pairs::{
|
|
|
|
PrefixWordPairsProximityDocids, MAX_LENGTH_FOR_PREFIX_PROXIMITY_DB,
|
|
|
|
MAX_PROXIMITY_FOR_PREFIX_PROXIMITY_DB,
|
|
|
|
};
|
2021-04-07 19:33:44 +08:00
|
|
|
pub use self::settings::{Setting, Settings};
|
|
|
|
pub use self::update_step::UpdateIndexingStep;
|
2021-03-25 18:10:12 +08:00
|
|
|
pub use self::word_prefix_docids::WordPrefixDocids;
|
2023-04-27 17:12:46 +08:00
|
|
|
pub use self::words_prefix_integer_docids::WordPrefixIntegerDocids;
|
2021-03-25 18:10:12 +08:00
|
|
|
pub use self::words_prefixes_fst::WordsPrefixesFst;
|
2021-04-07 19:33:44 +08:00
|
|
|
|
2020-10-26 17:52:57 +08:00
|
|
|
mod available_documents_ids;
|
2020-10-26 17:57:34 +08:00
|
|
|
mod clear_documents;
|
2020-10-26 18:01:00 +08:00
|
|
|
mod delete_documents;
|
2022-09-06 17:52:57 +08:00
|
|
|
pub(crate) mod facet;
|
2020-10-26 18:02:44 +08:00
|
|
|
mod index_documents;
|
2021-12-08 21:12:07 +08:00
|
|
|
mod indexer_config;
|
2022-09-14 21:33:13 +08:00
|
|
|
mod prefix_word_pairs;
|
2020-11-02 22:31:20 +08:00
|
|
|
mod settings;
|
2020-11-11 19:16:01 +08:00
|
|
|
mod update_step;
|
2021-03-25 18:10:12 +08:00
|
|
|
mod word_prefix_docids;
|
2023-04-27 17:12:46 +08:00
|
|
|
mod words_prefix_integer_docids;
|
2021-03-25 18:10:12 +08:00
|
|
|
mod words_prefixes_fst;
|