Mar*_*kus 2 .net c# caching memorycache
我不明白在 System.Runtime.Caching.MemoryCache 和 .NET 4.0 中滑动过期应该如何工作。
根据文档,到期时间跨度是“在缓存条目从缓存中逐出之前必须访问缓存条目的时间跨度”。
但是,以下单元测试失败:
private const string AnyKey = "key";
private const string AnyValue = "value";
private readonly TimeSpan timeout = TimeSpan.FromSeconds(0.5);
private void WaitSixtyPercentOfTheTimeout()
{
Thread.Sleep(TimeSpan.FromSeconds(timeout.TotalSeconds*0.6));
}
[Test]
public void Get_RefreshesTimeoutOfSlidingExpiration()
{
var cache = MemoryCache.Default;
cache.Set(AnyKey, AnyValue, new CacheItemPolicy {SlidingExpiration = timeout});
WaitSixtyPercentOfTheTimeout();
cache[AnyKey].Should().Be(AnyValue);
WaitSixtyPercentOfTheTimeout();
cache[AnyKey].Should().Be(AnyValue);
}
private void UpdateCallback(CacheEntryUpdateArguments arguments)
{
}
Run Code Online (Sandbox Code Playgroud)
巧合的是,我做了一个小改动来解决这个问题。但是,如果这是一个错误或功能,现在有人吗?
一旦设置了 UpdateCallBack,到期将按预期工作:
// [...]
[Test]
public void Get_RefreshesTimeoutOfSlidingExpiration()
{
var cache = MemoryCache.Default;
cache.Set(AnyKey, AnyValue, new CacheItemPolicy {SlidingExpiration = timeout, UpdateCallback = UpdateCallback});
WaitSixtyPercentOfTheTimeout();
cache[AnyKey].Should().Be(AnyValue);
WaitSixtyPercentOfTheTimeout();
cache[AnyKey].Should().Be(AnyValue);
}
private void UpdateCallback(CacheEntryUpdateArguments arguments)
{
}
Run Code Online (Sandbox Code Playgroud)
延长超时时间似乎可以解决问题。让它在我的机器上运行 2 秒:
private readonly TimeSpan timeout = TimeSpan.FromSeconds(2);
Run Code Online (Sandbox Code Playgroud)
我猜目前的缓存机制在时间上不是很准确,但实际上你无论如何都不会保持缓存半秒。
| 归档时间: |
|
| 查看次数: |
2504 次 |
| 最近记录: |