X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fmemcached_dump.pod;h=2d53701635e17b016ad53793cb3ccc3dfa33930d;hb=29251f6f205e2323a473c181aaee98786fc90dca;hp=3653e3f8a789c972b7c67ce8aadbf78bf2bd217f;hpb=ad1dda861388a32864c435eaa139a72bc61298f3;p=m6w6%2Flibmemcached diff --git a/docs/memcached_dump.pod b/docs/memcached_dump.pod index 3653e3f8..2d537016 100644 --- a/docs/memcached_dump.pod +++ b/docs/memcached_dump.pod @@ -1,6 +1,6 @@ =head1 NAME -memcached_dump +memcached_dump - get a list of keys found on memcached servers =head1 LIBRARY @@ -10,13 +10,13 @@ C Client Library for memcached (libmemcached, -lmemcached) #include - memcached_return + memcached_return_t memcached_dump (memcached_st *ptr, - memcached_dump_func *function, + memcached_dump_fn *function, void *context, uint32_t number_of_callbacks); - typedef memcached_return (*memcached_dump_func)(memcached_st *ptr, + typedef memcached_return_t (*memcached_dump_fn)(memcached_st *ptr, const char *key, size_t key_length, void *context); @@ -32,14 +32,14 @@ Currently the binar protocol is not supported. =head1 RETURN -A value of type C is returned +A value of type C is returned On success that value will be C. Use memcached_strerror() to translate this value to a printable string. =head1 HOME To find out more information please check: -L +L =head1 AUTHOR