memcached_cas_by_key (3) Linux Manual Page
NAME memcached_cas_by_key – Storing and Replacing Data SYNOPSIS #include <libmemcached/memcached.h> memcached_return_t memcached_cas(memcached_st *ptr, const char *key, size_t key_length, const char *value, size_t value_length, time_t expiration, uint32_t flags, uint64_t cas) memcached_return_t memcached_cas_by_key(memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, const char *value, size_t value_length, time_t expiration, uint32_t flags, uint64_t cas) Compile and link with -lmemcached DESCRIPTION memcached_cas() overwrites data in the server as long as the "cas" value is still…
