1 ===========================
2 Deleting data from a server
3 ===========================
5 .. index:: object: memcached_st
12 #include <libmemcached/memcached.h>
14 .. function:: memcached_return_t memcached_delete (memcached_st *ptr, const char *key, size_t key_length, time_t expiration)
16 .. function:: memcached_return_t memcached_delete_by_key (memcached_st *ptr, const char *group_key, size_t group_key_length, const char *key, size_t key_length, time_t expiration)
18 Compile and link with -lmemcached
25 :func:`memcached_delete` is used to delete a particular key.
26 :func:`memcached_delete_by_key` works the same, but it takes a master key
27 to find the given value.
29 Expiration works by placing the item into a delete queue, which means that
30 it won't be possible to retrieve it by the "get" command. The "add" and
31 "replace" commands with this key will also fail (the "set" command will
32 succeed, however). After the time passes, the item is finally deleted from server memory.
34 Please note the the memcached server removed tests for expiration in
43 A value of type :type:`memcached_return_t` is returned
44 On success that value will be `MEMCACHED_SUCCESS`.
45 Use :func:`memcached_strerror` to translate this value to a printable
48 If you are using the non-blocking mode of the library, success only
49 means that the message was queued for delivery.
59 :manpage:`memcached(1)` :manpage:`libmemcached(3)` :manpage:`memcached_strerror(3)`