kegani 0.1.0

A developer-friendly, ergonomic, production-ready Rust web framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Cache module for Kegani
//!
//! Provides Redis caching with decorators for cache-aside pattern.

pub mod client;
pub mod decorators;
pub mod keys;

pub use client::{RedisCache, RedisConfig, CacheError};
pub use decorators::CacheInvalidator;
pub use keys::KeyBuilder;