This is one of the strangest errors I've ever seen.
I'm doing a very simple call to return values from the HttpRuntime cache. The call is:
return HttpContext.Current.Cache[cacheKey];
If it returns null, that's fine. I check if the returned value is null and act accordingly. I've been using this call for a long time.
Recently, for some reason, when cacheKey is set to this exact value:
"Topic_GridSelectAll:5,null,2010-08-31-20-00-00,Published,desc,5,1"
a System.OverflowException is thrown: Negating the minimum value of a twos complement number is invalid.
Nothing about the call, associated code or server has changed. If the cacheKey has slightly different characters, it works perfectly fine. For instance, this cacheKey returns null without throwing any exception:
"Topic_GridSelectAll:5,null,2010-08-31-21-00-00,Published,desc,5,1"
Notice, the only difference between those two strings is the time characters: 2010-08-31-20-00-00 versus 2010-08-31-21-00-00.
Why the hell would that make any difference? And why now after all this time?
The stack trace is:
[OverflowException: Negating the minimum value of a twos complement number is invalid.]
System.Math.AbsHelper(Int32 value) +12753486
System.Web.Caching.CacheMultiple.UpdateCache(CacheKey cacheKey, CacheEntry newEntry, Boolean replace, CacheItemRemovedReason removedReason, Object& valueOld) +142
System.Web.Caching.CacheInternal.DoGet(Boolean isPublic, String key, CacheGetOptions getOptions) +122
MyProject.Helpers.CacheHelper.GetData(String cacheDomain, String cacheKey) in ...
I've tried changing the cache call to use HttpRuntime.Cache instead (ie. HttpRuntime.Cache[cacheKey]
), but that made no difference. I know it's the same underlying cache provider, but I thought maybe the different call would make a difference. No dice.