memcached_flush
C Client Library for memcached (libmemcached, -lmemcached)
#include <memcached.h>
memcached_return
memcached_flush (memcached_st *ptr,
time_t expiration);
memcached_flush() is used to wipe clean the contents of memcached(1) servers.
It will either do this immediately or expire the content based on the
expiration time passed to the method (a value of zero causes an immediate
flush). The operation is not atomic to multiple servers, just atomic to a
single server. That is, it will flush the servers in the order that they were
added.
A value of type memcached_return is returned
On success that value will be MEMCACHED_SUCCESS.
Use memcached_strerror() to translate this value to a printable string.
To find out more information please check: http://tangent.org/552/libmemcached.html
Brian Aker, <brian@tangent.org>
memcached_delete, memcat, memcached_flush, memcached_version, memcached_verbosity, memcached_result_st, memslap, memerror, memcached_behavior, memcached_strerror, memcached_server_st, memcached_quit, memcp, memcached_examples, memcached_servers, memstat, memcached_get, memcached_stats, memcached, memcached_auto, memcached_set, memrm, memflush, memcached_create, memcached_callback
Source Code: