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

Microsoft.Extensions.Caching.Memory.IMemoryCache

public interface IMemoryCache : IDisposable
Represents a local in-memory cache whose values are not serialized.
namespace Microsoft.Extensions.Caching.Memory { public interface IMemoryCache : IDisposable { bool TryGetValue(object key, out object value); ICacheEntry CreateEntry(object key); void Remove(object key); MemoryCacheStatistics GetCurrentStatistics(); } }