예제 #1
0
 public static bool Replace(this ISimpleMemcachedClient self, string key, object value, Expiration expiration)
 {
     return(self.Store(StoreMode.Replace, key, value, expiration));
 }
예제 #2
0
 public static bool Set(this ISimpleMemcachedClient self, string key, object value)
 {
     return(self.Store(StoreMode.Set, key, value, Expiration.Never));
 }