hexz-store 0.8.0

Storage backends for Hexz snapshots (local file, HTTP, S3)
Documentation
1
2
3
4
5
6
7
8
9
10
//! Local filesystem storage backends.
//!
//! - [`FileBackend`]: Traditional `pread(2)`-based I/O. Thread-safe, zero locks.
//! - [`MmapBackend`]: Memory-mapped zero-copy I/O. Default for local reads.

pub mod file;
pub mod mmap;

pub use file::FileBackend;
pub use mmap::MmapBackend;