public static bool Store(this CB.CouchbaseClient client, StoreMode storemode, string key, object value, TimeSpan validFor) { return(client.Store((Enyim.Caching.Memcached.StoreMode)storemode, key, value, validFor)); }
public static bool Store(this CB.CouchbaseClient client, StoreMode storemode, string key, object value, DateTime expirsAt) { return(client.Store((Enyim.Caching.Memcached.StoreMode)storemode, key, value, expirsAt)); }