Files
mixtape/zero/Media/MediaMetadataCache.cs
T
2024-03-19 13:25:58 +01:00

12 lines
236 B
C#

using Microsoft.Extensions.Caching.Memory;
namespace zero.Media;
public sealed class MediaMetadataCache
{
public IMemoryCache Cache { get; internal set; } = new MemoryCache(new MemoryCacheOptions
{
SizeLimit = 1000
});
}