hashiverse_server_lib/environment/mod.rs
1//! # Server-side data environment
2//!
3//! The server's persistence facade plus the pluggable store trait behind it.
4//! The facade layers striped locking, disk-quota enforcement, and LRU decimation
5//! over the store. An in-memory backend covers tests; a `fjall`-backed disk
6//! backend powers the production server.
7
8pub mod environment;
9pub mod environment_store;
10pub mod mem_environment_store;
11pub mod disk_environment_store;