X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fsource%2Flibmemcached%2Fmemcached_flush.rst;h=342ee1f5c86bd69bfb91913f91c017b9ff76f1e2;hb=52027f889cdd7435ae3cba934f190996ad739a3a;hp=52addbb3ba27ee158b58fed93e52f0681290b458;hpb=bd68f254afbf924020f10bd7dcadac8f2aa3affa;p=awesomized%2Flibmemcached diff --git a/docs/source/libmemcached/memcached_flush.rst b/docs/source/libmemcached/memcached_flush.rst index 52addbb3..342ee1f5 100644 --- a/docs/source/libmemcached/memcached_flush.rst +++ b/docs/source/libmemcached/memcached_flush.rst @@ -1,23 +1,22 @@ Wiping clean the contents of a server ===================================== -.. index:: object: memcached_st - -Wipe contents of memcached servers - SYNOPSIS -------- #include + Compile and link with -lmemcached .. function:: memcached_return_t memcached_flush (memcached_st *ptr, time_t expiration) -Compile and link with -lmemcached + :param ptr: pointer to an initialized `memcached_st` struct + :param expiration: expiration as a unix timestamp or as relative expiration time in seconds + :returns: `memcached_return_t` indicating success DESCRIPTION ----------- -:func::`memcached_flush` is used to wipe clean the contents of :program:`memcached` servers. +`memcached_flush` is used to wipe clean the contents of :manpage:`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 @@ -27,13 +26,21 @@ added. RETURN VALUE ------------ -A value of type :type:`memcached_return_t` is returned +A value of type :type:`memcached_return_t` is returned. On success that value will be `MEMCACHED_SUCCESS`. -Use :type:`memcached_strerror` to translate this value to a printable string. +Use `memcached_strerror` to translate this value to a printable string. SEE ALSO -------- .. only:: man - :manpage:`memcached(1)` :manpage:`libmemcached(3)` :manpage:`memcached_strerror(3)` + :manpage:`memcached(1)` + :manpage:`libmemcached(3)` + :manpage:`memcached_strerror(3)` + +.. only:: html + + * :manpage:`memcached(1)` + * :doc:`../libmemcached` + * :doc:`memcached_strerror`