//! Caching utilities for rutool
//!
//! This module provides comprehensive caching functionality including:
//! - In-memory cache with TTL support
//! - LRU (Least Recently Used) cache implementation
//! - Thread-safe caching solutions
//! - Cache statistics and management
/// Re-export commonly used types for convenience
pub use MemoryCache;
pub use LruCache;