<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="11.0.0-preview.2.26159.112" />

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); } }