Ejemplo n.º 1
0
 public static bool Set <T>(string key, T value, DateTime expireTime) where T : class => CacheDb.StringSet(key, value.Serialize(), expireTime - DateTime.Now);
Ejemplo n.º 2
0
 public static bool Set <T>(string key, T value) where T : class => CacheDb.StringSet(key, value.Serialize(), DefaultExpiry);