示例#1
0
        /// <summary>
/// This is to get the count from redis
/// </summary>
/// <returns></returns>
        public string GetItemCount()
        {
            return(_repositoryCache.GetValue(_cacheKey));
        }
示例#2
0
 public virtual T CheckCacheEntry <T>(string key)
 {
     return(_cache.GetValue <T>(key));
 }