tonbo 0.4.0-a1

Embedded database for serverless and edge runtimes, storing data as Parquet on S3
Documentation
1
2
3
4
5
6
7
8
//! In-memory structures (mutable and immutable memtables).
//!
//! - `mutable/` contains the columnar mutable memtable with a last-writer key index.
//! - `immutable/` contains typed arrays and the zero-copy immutable memtable.

pub(crate) mod immutable;
pub(crate) mod mutable;
pub(crate) mod policy;