Files
Web_SupplierManager_Prod/SupplierManager/Common/MyMemoryCache.cs
2025-11-20 09:14:00 +08:00

14 lines
267 B
C#

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