aurora-db 0.5.8

A lightweight, real-time embedded database with built-in PubSub, reactive queries, background workers, and intelligent caching.
Documentation
1
2
3
4
5
6
7
8
9
pub mod cold;
pub mod hot;
pub mod index_storage;
pub mod write_buffer;

pub use cold::ColdStore;
pub use hot::{CacheStats, EvictionPolicy, HotStore};
pub use index_storage::IndexStorage;
pub use write_buffer::WriteBuffer;