1 ==========================
2 Dumping data from a server
3 ==========================
6 Get a list of keys found on memcached servers
8 .. index:: object: memcached_st
16 #include <libmemcached/memcached.h>
18 .. c:function:: memcached_return_t memcached_dump (memcached_st *ptr, memcached_dump_fn *function, void *context, uint32_t number_of_callbacks);
20 .. c:function:: typedef memcached_return_t (*memcached_dump_fn)(memcached_st *ptr, const char *key, size_t key_length, void *context);
22 Compile and link with -lmemcached
31 :c:func:`memcached_dump()` is used to get a list of keys found in memcached(1)
32 servers. Because memcached(1) does not guarentee to dump all keys you can not
33 assume you have fetched all keys from the server. The function takes an array
34 of callbacks that it will use to execute on keys as they are found.
36 Currently the binary protocol is not testsed.
44 A value of type :c:type:`memcached_return_t` is returned
45 On success that value will be :c:type:`MEMCACHED_SUCCESS`.
46 Use :c:func:`memcached_strerror()` to translate this value to a printable
55 To find out more information please check:
56 `http://libmemcached.org/ <http://libmemcached.org/>`_
64 Brian Aker, <brian@tangent.org>
72 :manpage:`memcached(1)` :manpage:`libmemcached(3)` :manpage:`memcached_strerror(3)`