using Microsoft.Extensions.Caching.Memory; namespace WebAPIServer.Common { public class MyMemoryCache { public MemoryCache Cache { get; } = new MemoryCache( new MemoryCacheOptions { SizeLimit = 4096 }); } }