Cache.Add absolute expiration - UTC based or not?

后端 未结 3 1455
伪装坚强ぢ
伪装坚强ぢ 2020-12-30 19:31

The examples for Cache.Add uses DateTime.Now.Add to compute the expiration, i.e. it passes:

 DateTime.Now.AddSeconds(60)

as th

相关标签:
3条回答
  • 2020-12-30 19:56

    [Highly derivative of insights from Jeff Sternal's answer, which I've +1'd in incomplete payment :D]

    It seems that in 1.1 (didnt look at 1.0 but I assume its similar), in the absence of a DateTime.Kind and having published examples with a DateTime.Now-relative time, they feel comfortable immediately calling ToUniversalTime() immediately.

    Hence...

    1. in 1.x, you'll end up with a mess if you [the API user] use DateTime.UtcNow (and there's a sensitivity to DST starting during the call to Cache.Add)

    2. in 2.0 [and 3.x], you're safe to use either as long as the Kind on the time you supply is set [which it normally would be if you got the time from DateTime.Now or UtcNow]. [See Joe's comments and answer for full rationale] Definitely prefer UtcNow as ambiguity for 1 hour of DST switchover.

    3. The example stays as-is so people working against 1.x dont get misled [and people can go on pretending that DST is a wacky edge case :P]. [Ditto, as pointed out by Joe] But this is a very debatable stance as this can result in stuff staying in the cache for an extra hour.

    I'm still very interested to hear more details, including any from any Ponies out there.

    EDIT: I realise from Joe's comments that I didn't explicitly call out the fact that it is definitely more correct to use UtcNow if using 2.0 or later as one is exposed to risk of the item being cached for an extra hour during the DST 'groundhog hour'. I also think the MS doc should point this fact out (with the proviso that they need to mention that this does not to apply to 1.1 [regardless of whether the page is marked 2.0+ specific]. Thanks Joe.

    EDIT: Noda Time will have a neat wrapper to make this foolproof :D

    0 讨论(0)
  • 2020-12-30 19:59

    I reported this bug on Microsoft Connect some time ago, but it's been closed as won't fix.

    You still have a problem in .NET 2.0 if you specify your absolute expiration in local time.

    During one hour at the end of daylight savings time, your local time is ambiguous, so you can get unexpected results, i.e. the absolute expiration can be one hour longer than expected.

    In Europe, daylight savings time ended at 02:00 on 25 October 2009. The sample below illustrates that if you placed an item in the cache at 01:59 with an expiration of 2 minutes, it would remain in the cache for one hour and two minutes.

    DateTime startTime = new DateTime(2009, 10, 25, 1, 59,0);
    DateTime endTime = startTime.AddMinutes(2);
    // end time is two minutes after start time
    
    DateTime startUtcTime = startTime.ToUniversalTime();
    DateTime endUtcTime = endTime.ToUniversalTime();
    // end UTC time is one hour and two minutes after start UTC time
    
    Console.WriteLine("Start UTC time = " + startUtcTime.ToString());
    Console.WriteLine("End UTC time = " + endUtcTime.ToString());
    

    The workaround for .NET 2.0 or later is to specify the absolute expiration time in UTC as pointed out by Ruben.

    Microsoft should perhaps be recommending to use UTC in the examples for absolute expiration, but I guess there is the potential for confusion since this recommendation is only valid for .NET 2.0 and later.

    EDIT

    From the comments:

    But the exposure only occurs if the conversion happens during the overlap. The single conversion actually taking place is when you lodge the item with Cache.Add

    The problem will only happen if you insert an item in the cache with an AbsoluteExpiration time in local time during that one ambiguous hour at the end of daylight savings time.

    So for example, if your local time zone is Central European (GMT+1 in winter, GMT+2 in summer), and you execute the following code at 01:59:00 on 25 October 2009:

    DateTime absoluteExpiration = DateTime.Now.AddMinutes(2);
    Cache.Add(... absoluteExpiration ...)
    

    then the item will remain in the cache for one hour and two minutes, rather than the two minutes you would normally expect. This can be a problem for some highly time-critical applications (e.g. stock ticker, airline departures board).

    What's happening here is (assuming European time, but the principle is the same for any time zone):

    • DateTime.Now = 2009-10-25 01:59:00 local. local=GMT+2, so UTC = 2009-10-24 23:59:00

    • .AddMinutes(2) = 2009-10-25 02:01:00 local. local = GMT+1, so UTC = 2009-11-25 01:01:00

    • Cache.Add internally converts the expiration time to UTC (2009-11-25 01:01:00) so the expiration is one hour and two minutes ahead of the current UTC time (23:59:00).

    If you use DateTime.UtcNow in place of DateTime.Now, the cache expiration will be two minutes (.NET 2.0 or later):

    DateTime absoluteExpiration = DateTime.UtcNow.AddMinutes(2);
    Cache.Add(... absoluteExpiration ...)
    

    From the comments:

    Or am I missing something?

    No you're not. Your analysis is spot on and if your application is time-critical and runs during that period at the end of DST, you're right to be using DateTime.UtcNow.

    The statement in Ruben's answer that:

    you're safe to use either as long as the Kind on the time you supply is set

    is incorrect.

    0 讨论(0)
  • 2020-12-30 20:00

    Cache.Add converts the expiration date to UTC before storing it.

    From Reflector (I've omitted most of the parameters to make it easier to read):

    public object Add(... DateTime absoluteExpiration ...)
    {
        DateTime utcAbsoluteExpiration = DateTimeUtil.ConvertToUniversalTime(absoluteExpiration);
        return this._cacheInternal.DoInsert(... utcAbsoluteExpiration ...);
    }
    

    In CacheExpires.FlushExpiredItems, utcAbsoluteExpiration is compared to DateTime.UtcNow. As Joe notes in his answer, this causes unexpected behavior when a cache item's addition and expiration span the end of daylight saving time.

    0 讨论(0)
提交回复
热议问题