-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMemoryCache.cs
43 lines (26 loc) · 1.64 KB
/
MemoryCache.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using Infra.Caching.Memory.Extensions;
using Infra.Core.Cache.Abstractions;
using Infra.Core.Cache.Models;
using Microsoft.Extensions.Caching.Memory;
namespace Infra.Caching.Memory;
public class MemoryCache(IMemoryCache cache) : ICache
{
#region Sync Method
public void Set(string key, byte[] value, CacheOptions cacheOptions)
=> cache.Set(key, value, cacheOptions?.ToMemoryCacheEntryOptions());
public void SetString(string key, string value, CacheOptions cacheOptions)
=> cache.Set(key, value, cacheOptions?.ToMemoryCacheEntryOptions());
public byte[] Get(string key) => cache.Get<byte[]>(key);
public string GetString(string key) => cache.Get<string>(key);
public void Remove(string key) => cache.Remove(key);
public void Refresh(string key) => throw new NotSupportedException();
#endregion
#region Async Method
public Task SetAsync(string key, byte[] value, CacheOptions cacheOptions, CancellationToken token = default) => throw new NotSupportedException();
public Task SetStringAsync(string key, string value, CacheOptions cacheOptions, CancellationToken token = default) => throw new NotSupportedException();
public Task<byte[]> GetAsync(string key, CancellationToken token = default) => throw new NotSupportedException();
public Task<string> GetStringAsync(string key, CancellationToken token = default) => throw new NotSupportedException();
public Task RemoveAsync(string key, CancellationToken token = default) => throw new NotSupportedException();
public Task RefreshAsync(string key, CancellationToken token = default) => throw new NotSupportedException();
#endregion
}