Skip to main content

orbok_cache/
lib.rs

1//! # orbok-cache
2//!
3//! Derived-data cache service over the pinned `localcache` engine
4//! (Appendix A). The catalog stays authoritative; everything stored
5//! here is rebuildable from source files.
6
7pub mod namespace;
8pub mod service;
9
10#[cfg(test)]
11mod tests;
12
13pub use namespace::OrbokCacheNamespace;
14pub use service::{CacheCleanupOutcome, CacheService, EngineOptions, NamespaceUsage};