pub struct CacheStats {
pub hits: u64,
pub misses: u64,
pub entries: usize,
pub max_entries: usize,
pub evictions_lru: u64,
pub evictions_reader: u64,
pub peak_entries: usize,
pub active_readers: usize,
pub memory_bytes_estimate: usize,
}Expand description
Cache statistics for monitoring.
Fields§
§hits: u64Number of cache hits.
misses: u64Number of cache misses.
entries: usizeCurrent number of cached entries.
max_entries: usizeMaximum number of entries allowed.
evictions_lru: u64Number of entries evicted due to LRU policy.
evictions_reader: u64Number of entries evicted because all readers passed them.
peak_entries: usizePeak number of entries ever held (high watermark).
active_readers: usizeNumber of currently active readers.
memory_bytes_estimate: usizeEstimated memory usage in bytes.
Implementations§
Source§impl CacheStats
impl CacheStats
Sourcepub fn utilization(&self) -> f64
pub fn utilization(&self) -> f64
Calculate cache utilization (entries / max_entries).
Sourcepub fn total_evictions(&self) -> u64
pub fn total_evictions(&self) -> u64
Total evictions (LRU + reader-based).
Sourcepub fn format_summary(&self) -> String
pub fn format_summary(&self) -> String
Format statistics as a human-readable string.
Trait Implementations§
Source§impl Clone for CacheStats
impl Clone for CacheStats
Source§fn clone(&self) -> CacheStats
fn clone(&self) -> CacheStats
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CacheStats
impl Debug for CacheStats
Source§impl Default for CacheStats
impl Default for CacheStats
Source§fn default() -> CacheStats
fn default() -> CacheStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CacheStats
impl RefUnwindSafe for CacheStats
impl Send for CacheStats
impl Sync for CacheStats
impl Unpin for CacheStats
impl UnwindSafe for CacheStats
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more