-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathDefaultResponseCacheProvider.cs
73 lines (67 loc) · 2.19 KB
/
DefaultResponseCacheProvider.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using Microsoft.Extensions.Caching.Memory;
using System;
using System.Threading.Tasks;
namespace WebApiClientCore.Implementations
{
/// <summary>
/// 表示Api响应结果缓存提供者的接口
/// </summary>
sealed class DefaultResponseCacheProvider : Disposable, IResponseCacheProvider
{
/// <summary>
/// 内存缓存
/// </summary>
private readonly IMemoryCache cache;
/// <summary>
/// 获取提供者的友好名称
/// </summary>
public string Name { get; } = nameof(DefaultResponseCacheProvider);
/// <summary>
/// Api响应结果缓存提供者的接口
/// </summary>
/// <param name="cache"></param>
public DefaultResponseCacheProvider(IMemoryCache cache)
{
this.cache = cache;
}
/// <summary>
/// 从缓存中获取响应实体
/// </summary>
/// <param name="key">键</param>
/// <returns></returns>
public Task<ResponseCacheResult> GetAsync(string key)
{
if (this.cache.TryGetValue(key, out var value) == false)
{
var result = ResponseCacheResult.NoValue;
return Task.FromResult(result);
}
else
{
var val = value as ResponseCacheEntry;
var result = new ResponseCacheResult(val, true);
return Task.FromResult(result);
}
}
/// <summary>
/// 设置响应实体到缓存
/// </summary>
/// <param name="key">键</param>
/// <param name="entry">缓存实体</param>
/// <param name="expiration">有效时间</param>
/// <returns></returns>
public Task SetAsync(string key, ResponseCacheEntry entry, TimeSpan expiration)
{
this.cache.Set(key, entry, DateTimeOffset.Now.Add(expiration));
return Task.CompletedTask;
}
/// <summary>
/// 释放资源
/// </summary>
/// <param name="disposing"></param>
protected override void Dispose(bool disposing)
{
this.cache.Dispose();
}
}
}