pub struct CacheStats {
pub total_blocks: usize,
pub used_blocks: usize,
pub free_blocks: usize,
pub cache_hit_rate: f32,
pub cache_hits: u64,
pub cache_misses: u64,
pub eviction_count: u64,
pub avg_block_utilization: f32,
pub prefix_cache_stats: Option<PrefixCacheStats>,
}Expand description
Cache statistics
Fields§
§total_blocks: usizeTotal number of cache blocks
used_blocks: usizeNumber of used blocks
free_blocks: usizeNumber of free blocks
cache_hit_rate: f32Cache hit rate (0.0 to 1.0)
cache_hits: u64Total number of cache hits
cache_misses: u64Total number of cache misses
eviction_count: u64Number of cache evictions
avg_block_utilization: f32Average block utilization
prefix_cache_stats: Option<PrefixCacheStats>Prefix cache statistics
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<'de> Deserialize<'de> for CacheStats
impl<'de> Deserialize<'de> for CacheStats
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. 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 UnsafeUnpin 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