Is it possible not to expire for CacheItemPolicy.AbsoluteExpiration
at the specific time?
MSDN there is written:
The period of time that must pass before a cache entry is evicted.
As I understand this sentence means that no less than the specific time... is it possible if I set 12 hours, but the record will expire (let's say) only in 12.5 hours? (I mean it's not documented, it will take not less than 12 hours, but 12.5 hours is also possible or even more, right?)
for example:
I set UpdateCallback
and AbsoluteExpiration = 60seconds
for my CacheItemPoice
, in practice it's called once in 80 seconds. (I logged it)
Inside UpdateCallback
I set new values for CacheEntryUpdateArguments
, I mean new UpdatedCacheItem
(the same key and new data) and UpdatedCacheItemPolicy
(the same period of time and the same UpdateCallback
)