<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="10.0.12" />

Microsoft.Extensions.Caching.Memory.MemoryCacheStatistics

public class 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(); } }