moltendb-core 0.2.0-beta.1

MoltenDB core engine — in-memory DashMap storage, WAL persistence, query evaluation. No HTTP, no auth.
Documentation
1
2
3
4
5
6
7
8
9
10
11
// moltendb-core — pure engine, no HTTP, no auth, no rate limiting.
pub mod engine;
pub mod query;
pub mod analytics;

// WASM web worker entry point — only compiled for wasm32 target
#[cfg(target_arch = "wasm32")]
pub mod worker;

#[cfg(target_arch = "wasm32")]
pub use worker::*;