Found the below for Caching from the link for Azure
There are three types of Expiration Type: None, Absolute, and Sliding
Window. These configure how Time to Live (min) is used to determine
expiration. The default Expiration Type is Absolute, which means that
the countdown timer for an item's expiration begins when the item is
placed into the cache. Once the specified amount of time has elapsed
for an item, the item expires. If Sliding Window is specified, then
the expiration countdown for an item is reset each time the item is
accessed in the cache, and the item will not expire until the
specified amount of time has elapsed since its last access. If None is
specified, then Time to Live (min) must be set to 0, and items will
not expire, and will remain valid as long as they are in the cache.
So, the expiration countdown will be reset if an item is accessed within the sliding window.