Exemplo n.º 1
0
 private string GetCache()
 {
     if (!RedisDb.Exists(_cacheKey))
     {
         ReloadCache();
     }
     return(RedisDb.Get(_cacheKey));
 }