Example #1
0
        public V GetOrCreate <V>(string cacheKey, Func <V> create, int cacheDurationInSeconds = int.MaxValue)
        {
            var cacheManager = HttpRuntimeCacheHelper <V> .GetInstance();

            if (cacheManager.ContainsKey(cacheKey))
            {
                return(cacheManager[cacheKey]);
            }
            else
            {
                var result = create();
                cacheManager.Add(cacheKey, result, cacheDurationInSeconds);
                return(result);
            }
        }
Example #2
0
 public void Remove <V>(string key)
 {
     HttpRuntimeCacheHelper <V> .GetInstance().Remove(key);
 }
Example #3
0
 public IEnumerable <string> GetAllKey <V>()
 {
     return(HttpRuntimeCacheHelper <V> .GetInstance().GetAllKey());
 }
Example #4
0
 public V Get <V>(string key)
 {
     return(HttpRuntimeCacheHelper <V> .GetInstance().Get(key));
 }
Example #5
0
 public bool ContainsKey <V>(string key)
 {
     return(HttpRuntimeCacheHelper <V> .GetInstance().ContainsKey(key));
 }
Example #6
0
 public void Add <V>(string key, V value, int cacheDurationInSeconds)
 {
     HttpRuntimeCacheHelper <V> .GetInstance().Add(key, value, cacheDurationInSeconds);
 }
Example #7
0
 public void Add <V>(string key, V value)
 {
     HttpRuntimeCacheHelper <V> .GetInstance().Add(key, value);
 }