Files
Web_AUTS_New_Prod/WebAPIServer/Common/MyMemoryCache.cs

14 lines
267 B
C#
Raw Normal View History

2025-11-20 14:07:55 +08:00
using Microsoft.Extensions.Caching.Memory;
namespace WebAPIServer.Common
{
public class MyMemoryCache
{
public MemoryCache Cache { get; } = new MemoryCache(
new MemoryCacheOptions
{
SizeLimit = 4096
});
}
}