Files

14 lines
267 B
C#
Raw Permalink Normal View History

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