为什么MemoryCache中的滑动过期行为如此奇怪?

时间:2014-04-09 11:01:37

标签: c# .net caching memorycache

我不明白滑动过期应该如何在带有.NET 4.0的System.Runtime.Caching.MemoryCache中起作用。

根据文档,到期时间跨度是"在从缓存中逐出缓存条目之前必须访问缓存条目的时间跨度。"

然而,以下单元测试失败:

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)
{
}

巧合的是,我做了一个小小的修改来解决这个问题。但是,如果它是一个错误或一个功能,现在有人吗?

一旦设置了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)
{
}

1 个答案:

答案 0 :(得分:4)

延长时间似乎可以解决问题。让它在我的机器上工作2秒:

private readonly TimeSpan timeout = TimeSpan.FromSeconds(2);

我猜当前的缓存机制在时间上不是很准确,但实际上你不会将缓存保持半秒。