X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_stats.pod;h=3b198d99633e6ec0f02372062f409ffae5d98fd2;hb=9c7e4d791a127f8ae46aaddc531319da1f34b5ba;hp=fe093d105915a57bcd09fe53bc37aa5e833fdc9e;hpb=f6b4c8b2322df7ef8b0e430c3a951e41242fe14a;p=m6w6%2Flibmemcached diff --git a/docs/memcached_stats.pod b/docs/memcached_stats.pod index fe093d10..3b198d99 100644 --- a/docs/memcached_stats.pod +++ b/docs/memcached_stats.pod @@ -30,6 +30,12 @@ C Client Library for memcached (libmemcached, -lmemcached) memcached_stat_st *stat, memcached_return_t *error); + memcached_return_t + memcached_stat_execute (memcached_st *memc, + const char *args, + memcached_stat_fn func, + void *context); + =head1 DESCRIPTION libmemcached(3) has the ability to query a memcached server (or collection @@ -38,6 +44,12 @@ C structure. You are responsible for freeing this structure. While it is possible to access the structure directly it is not advisable. and +executes a "stat" command on each server. args is an optional argument that +can be passed in to modify the behavior of "stats". You will need to supply +a callback function that will be supplied each pair of values returned by +the memcached server. + memcached_stat() fetches an array of C structures containing the state of all available memcached servers. The return value must be freed by the calling application. If called with the C