In [MemoryCache by Microsoft](https://learn.microsoft.com/en-us/aspnet/core/performance/caching/memory?view=aspnetcore-7.0) we can do things like ``` public class MyMemoryCache { public MemoryCache Cache { get; } = new MemoryCache( new MemoryCacheOptions { SizeLimit = 1024 }); } ``` or ``` Action<MemoryCacheOptions> action = options => { options.SizeLimit = 1024; }; services.AddMemoryCache(action); ``` Is there a way to limit the total size of the LazyCache? If not, this should be your next feature to implement in my opinion. [This is why it is important](https://learn.microsoft.com/en-us/aspnet/core/performance/caching/memory?view=aspnetcore-7.0#use-setsize-size-and-sizelimit-to-limit-cache-size)