venator_engine/engine/mod.rs
1//! The actual engine that handles inserts and queries.
2//!
3//! There are two variants: sync and async. `SyncEngine` is the core and the
4//! `AsyncEngine` variant wraps an `SyncEngine` in a thread and coordinates via
5//! message passing.
6
7mod async_engine;
8mod sync_engine;
9
10pub use async_engine::AsyncEngine;
11pub use sync_engine::SyncEngine;