tiny-counter 0.1.0

Track event counts across time windows with fixed memory and fast queries
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Storage integration tests.
//!
//! Organized by operation type:
//! - compact: Storage compression and memory cleanup
//! - export: Extracting counters from EventStore
//! - import: Loading counters into EventStore
//! - merge: Combining counters from multiple stores
//! - config_compatibility: Export/import across different configs
//! - scenarios: Real-world distributed system use cases
//! - persistence: Storage backend tests

mod compact;
mod config_compatibility;
mod export;
mod import;
mod merge;
mod persistence;
mod scenarios;