/// <summary>
 /// Refreshes a value in the cache based on its key, resetting its sliding expiration timeout (if any).
 /// </summary>
 /// <param name="key">A string identifying the requested value.</param>
 public void Refresh(string key)
 {
     L2Cache.Refresh(key);
 }