reddb_server/log/mod.rs
1//! High-performance append-only log collections.
2//!
3//! LOG tables are optimized for high-throughput sequential writes with
4//! time-ordered IDs and automatic retention.
5
6pub mod id;
7pub mod store;
8
9pub use id::LogId;
10pub use store::{LogCollection, LogCollectionConfig, LogEntry, LogRetention};