<PackageReference Include="Microsoft.Extensions.Caching.Memory" Version="11.0.0-preview.1.26104.118" />

Microsoft.Extensions.DependencyInjection.MemoryCacheServiceCollectionExtensions

Extension methods for setting up memory cache related services in an IServiceCollection.
namespace Microsoft.Extensions.DependencyInjection { public static class MemoryCacheServiceCollectionExtensions { public static IServiceCollection AddMemoryCache(this IServiceCollection services); public static IServiceCollection AddMemoryCache(this IServiceCollection services, Action<MemoryCacheOptions> setupAction); public static IServiceCollection AddDistributedMemoryCache(this IServiceCollection services); public static IServiceCollection AddDistributedMemoryCache(this IServiceCollection services, Action<MemoryDistributedCacheOptions> setupAction); } }