pub struct BucketMapHolderStats {
Show 34 fields pub held_in_mem_slot_list_len: AtomicU64, pub held_in_mem_slot_list_cached: AtomicU64, pub get_mem_us: AtomicU64, pub gets_from_mem: AtomicU64, pub get_missing_us: AtomicU64, pub gets_missing: AtomicU64, pub entry_mem_us: AtomicU64, pub entries_from_mem: AtomicU64, pub entry_missing_us: AtomicU64, pub entries_missing: AtomicU64, pub load_disk_found_count: AtomicU64, pub load_disk_found_us: AtomicU64, pub load_disk_missing_count: AtomicU64, pub load_disk_missing_us: AtomicU64, pub updates_in_mem: AtomicU64, pub items: AtomicU64, pub items_us: AtomicU64, pub keys: AtomicU64, pub deletes: AtomicU64, pub inserts: AtomicU64, pub bg_waiting_us: AtomicU64, pub bg_throttling_wait_us: AtomicU64, pub count_in_mem: AtomicUsize, pub per_bucket_count: Vec<AtomicUsize>, pub flush_entries_updated_on_disk: AtomicU64, pub flush_entries_evicted_from_mem: AtomicU64, pub active_threads: AtomicU64, pub get_range_us: AtomicU64, pub flush_scan_us: AtomicU64, pub flush_update_us: AtomicU64, pub flush_evict_us: AtomicU64, pub flush_grow_us: AtomicU64, pub estimate_mem: AtomicU64, pub flush_should_evict_us: AtomicU64, /* private fields */
}

Fields

held_in_mem_slot_list_len: AtomicU64held_in_mem_slot_list_cached: AtomicU64get_mem_us: AtomicU64gets_from_mem: AtomicU64get_missing_us: AtomicU64gets_missing: AtomicU64entry_mem_us: AtomicU64entries_from_mem: AtomicU64entry_missing_us: AtomicU64entries_missing: AtomicU64load_disk_found_count: AtomicU64load_disk_found_us: AtomicU64load_disk_missing_count: AtomicU64load_disk_missing_us: AtomicU64updates_in_mem: AtomicU64items: AtomicU64items_us: AtomicU64keys: AtomicU64deletes: AtomicU64inserts: AtomicU64bg_waiting_us: AtomicU64bg_throttling_wait_us: AtomicU64count_in_mem: AtomicUsizeper_bucket_count: Vec<AtomicUsize>flush_entries_updated_on_disk: AtomicU64flush_entries_evicted_from_mem: AtomicU64active_threads: AtomicU64get_range_us: AtomicU64flush_scan_us: AtomicU64flush_update_us: AtomicU64flush_evict_us: AtomicU64flush_grow_us: AtomicU64estimate_mem: AtomicU64flush_should_evict_us: AtomicU64

Implementations

This is an estimate of the # of items in mem that are awaiting flushing to disk. returns (# items in mem) - (# items we intend to hold in mem for performance heuristics) The result is also an estimate because ‘held_in_mem’ is based on a stat that is swapped out when stats are reported.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more