Exemple #1
0
 public IActionResult GetRedis(string key)
 {
     if (!String.IsNullOrEmpty(key))
     {
         var value = _cache.GetValue(key);
         ViewBag.GetValue = value;
     }
     return(View());
 }