Estatísticas da cache

@if (!updating() && cacheMetrics()) {
@for (entry of cacheMetrics() | keyvalue; track entry.key) { }
Nome da cache Hits Misses Cache Gets Cache Puts Cache Removals Despejos Cache Hit % Cache Miss %
{{ entry.key }} {{ entry.value['cache.gets.hit'] }} {{ entry.value['cache.gets.miss'] }} {{ entry.value['cache.gets.hit'] + entry.value['cache.gets.miss'] }} {{ entry.value['cache.puts'] }} {{ entry.value['cache.removals'] }} {{ entry.value['cache.evictions'] }} {{ filterNaN((100 * entry.value['cache.gets.hit']) / (entry.value['cache.gets.hit'] + entry.value['cache.gets.miss'])) | number: '1.0-4' }} {{ filterNaN((100 * entry.value['cache.gets.miss']) / (entry.value['cache.gets.hit'] + entry.value['cache.gets.miss'])) | number: '1.0-4' }}
}