simd-r-drive 0.11.0-alpha

SIMD-optimized append-only schema-less storage engine. Key-based binary storage in a single-file storage container.
Documentation
mod constants;
use constants::*;

mod data_store;
pub use data_store::*;

mod entry_handle;
pub use entry_handle::*;

mod entry_iterator;
pub use entry_iterator::*;

mod entry_metadata;
pub use entry_metadata::*;

mod entry_stream;
pub use entry_stream::*;

mod key_indexer;
pub use key_indexer::*;

pub mod digest;

mod simd_copy;
use simd_copy::*;

pub mod traits;