14 lines
267 B
C#
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
|
|
});
|
|
}
|
|
}
|