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
9
10
11
//! Mutable memtable(s).
//!
//! This module implements the columnar-style mutable memtable used by Tonbo's
//! dynamic layout. The earlier trait-based abstraction has been flattened: the
//! engine now only builds the dynamic `DynMem` implementation.

pub(crate) mod memtable;
mod metrics;

pub(crate) use memtable::DynMem;
pub(crate) use metrics::MutableMemTableMetrics;