inferno-ai 0.10.3

Enterprise AI/ML model runner with automatic updates, real-time monitoring, and multi-interface support
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! # Unified Caching System
//!
//! This module consolidates all caching functionality:
//! - Model caching (loading and warm-up)
//! - Response caching (deduplication)
//! - Advanced caching (hierarchy, compression, persistence)
//!
//! Previously split across: cache.rs, response_cache.rs, advanced_cache.rs

// Re-export existing cache modules during transition
pub use crate::advanced_cache;
pub use crate::cache::*;
pub use crate::response_cache;

// Future: Will consolidate into unified API
// pub mod model_cache;
// pub mod response_cache;
// pub mod advanced;