Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics
Holds a snapshot of statistics for a memory cache.
namespace Microsoft.Extensions.Caching.Memory
{
public class MemoryCacheStatistics
{
public long CurrentEntryCount { get; set; }
public long? CurrentEstimatedSize { get; set; }
public long TotalMisses { get; set; }
public long TotalHits { get; set; }
public MemoryCacheStatistics();
}
}