db 0.0.0-alpha.101

Lightweight high-performance pure-rust transactional embedded database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod batch;
mod block;
mod bytes;
mod frame;
mod num;
mod write_batch;

pub use batch::{read_batch, write_batch};
pub use bytes::Bytes;
pub use frame::{read_frame, write_frame};
pub use num::{CollectionId, VirtualStorageAddress};
pub use write_batch::WriteBatch;