67
67
uint32_t hash_entries; /* max number of entries in the hash table */
68
68
size_t key_cache_mem_size; /* specified size of the cache memory */
69
69
uint32_t key_cache_block_size; /* size of the page buffer of a cache block */
70
71
ulong min_warm_blocks; /* min number of warm blocks; */
71
72
ulong age_threshold; /* age threshold for hot blocks */
72
73
uint64_t keycache_time; /* total number of block link operations */
73
74
int hash_links; /* max number of hash links */
74
75
int hash_links_used; /* number of hash links currently used */
76
76
ulong blocks_used; /* maximum number of concurrently used blocks */
77
77
ulong blocks_unused; /* number of currently unused blocks */
78
78
ulong blocks_changed; /* number of currently dirty blocks */