7
C Client Library for memcached (libmemcached, -lmemcached)
11
#include <memcached.h>
13
char *memcached_strerror (memcached_st *ptr,
18
memcached_strerror() takes a C<memcached_return> value and returns a string
21
This string must not be modified by the application.
23
C<memcached_return> values are returned from nearly all libmemcached(3) functions.
25
C<memcached_return> values are of an enum type so that you can set up responses
26
with switch/case and know that you are capturing all possible return values.
30
memcached_strerror() returns a string describing a C<memcached_return> value.
34
To find out more information please check:
35
L<http://tangent.org/552/libmemcached.html>
39
Brian Aker, E<lt>brian@tangent.orgE<gt>
43
memcached(1) libmemcached(3)