Ejemplo n.º 1
0
 public static bool Store(this PreCouchBaseClient client, StoreMode storemode, string key, object value, TimeSpan validFor)
 {
     return(client.Store((Enyim.Caching.Memcached.StoreMode)storemode, key, value, validFor));
 }
Ejemplo n.º 2
0
 public static bool Store(this PreCouchBaseClient client, StoreMode storemode, string key, object value, DateTime expirsAt)
 {
     return(client.Store((Enyim.Caching.Memcached.StoreMode)storemode, key, value, expirsAt));
 }