orderwal 0.5.1

A generic-purpose, atomic, ordered, zero-copy read, zero-cost (in-place) write, Write-Ahead Log implementation for Rust.
Documentation
1
2
3
4
5
6
7
/// The multiple version memtable implementation.
pub mod multiple_version;
/// The memtable implementation.
pub mod table;

pub use multiple_version::MultipleVersionTable;
pub use table::Table;