BotSharp/src/Infrastructure/BotSharp.Core/Infrastructures/MemoryCacheService.cs

41 lines
981 B
C#
Raw Normal View History

2024-09-06 20:41:22 +00:00
using BotSharp.Abstraction.Infrastructures;
using Microsoft.Extensions.Caching.Memory;
namespace BotSharp.Core.Infrastructures;
public class MemoryCacheService : ICacheService
{
private static IMemoryCache _cache = new MemoryCache(new MemoryCacheOptions
{
});
private readonly BotSharpDatabaseSettings _settings;
public MemoryCacheService(BotSharpDatabaseSettings settings)
{
_settings = settings;
}
public async Task<T?> GetAsync<T>(string key)
{
return (T?)(_cache.Get(key) ?? default(T));
}
public async Task<object> GetAsync(string key, Type type)
{
return _cache.Get(key) ?? default;
}
public async Task SetAsync<T>(string key, T value, TimeSpan? expiry)
{
_cache.Set(key, value, new MemoryCacheEntryOptions
{
AbsoluteExpirationRelativeToNow = expiry
});
}
2024-09-26 22:22:06 +00:00
public async Task RemoveAsync(string key)
{
_cache.Remove(key);
}
2024-09-06 20:41:22 +00:00
}