Reputation: 1120
I am trying to decipher whether Refresh in IDistributedCache for Sql Server actually updates the Value of the cache.
Upvotes: 0
Views: 1654
Reputation: 143083
No, if cache item has sliding expiration then this call resets it. To update value you can just set a new value with IDistributedCache.Set
.
Upvotes: 2