From: Padraig O'Sullivan Date: Sat, 11 Jul 2009 18:41:34 +0000 (-0400) Subject: Adding the fetch_execute function to the C++ interface. X-Git-Tag: 0.32~17^2~2 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=67f0779a5c91cde63c1da8240a9f4d95509d3273;p=awesomized%2Flibmemcached Adding the fetch_execute function to the C++ interface. --- diff --git a/libmemcached/memcached.hh b/libmemcached/memcached.hh index 08aa8442..651c4a2c 100644 --- a/libmemcached/memcached.hh +++ b/libmemcached/memcached.hh @@ -113,25 +113,55 @@ public: return false; } - bool set(const std::string &key, const std::string &value) + bool set(const std::string &key, + const std::string &value, + time_t expiration, + uint32_t flags) { memcached_return rc= memcached_set(&memc, key.c_str(), key.length(), value.c_str(), value.length(), - time_t(0), uint32_t(0)); - return (rc == MEMCACHED_SUCCESS); + expiration, flags); + return (rc == MEMCACHED_SUCCESS || rc == MEMCACHED_BUFFERED); + } + + bool set_all(std::vector &keys, + std::vector &values, + time_t expiration, + uint32_t flags) + { + if (keys.size() != values.size()) + { + return false; + } + bool retval= true; + std::vector::iterator key_it= keys.begin(); + std::vector::iterator val_it= values.begin(); + while (key_it != keys.end()) + { + retval= set((*key_it), (*val_it), expiration, flags); + if (retval == false) + { + return retval; + } + ++key_it; + ++val_it; + } + return retval; } bool set_by_key(const std::string &master_key, const std::string &key, - const std::string &value) + const std::string &value, + time_t expiration, + uint32_t flags) { memcached_return rc= memcached_set_by_key(&memc, master_key.c_str(), master_key.length(), key.c_str(), key.length(), value.c_str(), value.length(), - time_t(0), - uint32_t(0)); + expiration, + flags); return (rc == MEMCACHED_SUCCESS); } @@ -290,6 +320,23 @@ public: return (rc == MEMCACHED_SUCCESS); } + bool flush(time_t expiration) + { + memcached_return rc= memcached_flush(&memc, expiration); + return (rc == MEMCACHED_SUCCESS); + } + + bool fetch_execute(memcached_execute_function *callback, + void *context, + unsigned int num_of_callbacks) + { + memcached_return rc= memcached_fetch_execute(&memc, + callback, + context, + num_of_callbacks); + return (rc == MEMCACHED_SUCCESS); + } + const std::string lib_version() const { const char *ver= memcached_lib_version();