orbok-cache 0.1.0

orbok cache-engine boundary over localcache (Appendix A)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! # orbok-cache
//!
//! Derived-data cache service over the pinned `localcache` engine
//! (Appendix A). The catalog stays authoritative; everything stored
//! here is rebuildable from source files.

pub mod namespace;
pub mod service;

#[cfg(test)]
mod tests;

pub use namespace::OrbokCacheNamespace;
pub use service::{CacheCleanupOutcome, CacheService, EngineOptions, NamespaceUsage};