oxcache 0.3.6

A high-performance multi-level cache library for Rust with L1 (memory) and L2 (Redis) caching.
1
2
3
4
5
6
7
//! oxcache integration modules with external frameworks.
//!
//! Integrations are feature-gated so the core cache library stays
//! dependency-free when integrations are not needed.

#[cfg(feature = "kit")]
pub mod kit;