Skip to main content

ccboard_core/cache/
mod.rs

1//! Caching layer for ccboard-core
2//!
3//! Provides SQLite-based metadata caching for 90% startup speedup.
4
5pub mod metadata_cache;
6
7pub use metadata_cache::{
8    ActivityCacheStats, AggregateStats, CacheStats, MetadataCache, SearchResult, StoredAlert,
9};