sombra 0.3.3

High-performance graph database with ACID transactions, single-file storage, and bindings for Rust, TypeScript, and Python
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod header;
pub mod heap;
pub mod page;
pub mod record;
pub mod ser;

pub use header::Header;
pub use heap::{RecordPointer, RecordStore};
pub use record::{RecordHeader, RecordKind};
pub use ser::{deserialize_edge, deserialize_node, serialize_edge, serialize_node};