3 memcached_strerror - Get error string
7 C Client Library for memcached (libmemcached, -lmemcached)
11 #include <memcached.h>
14 memcached_strerror (memcached_st *ptr,
15 memcached_return_t rc);
19 memcached_strerror() takes a C<memcached_return_t> value and returns a string
22 This string must not be modified by the application.
24 C<memcached_return_t> values are returned from nearly all libmemcached(3) functions.
26 C<memcached_return_t> values are of an enum type so that you can set up responses
27 with switch/case and know that you are capturing all possible return values.
31 memcached_strerror() returns a string describing a C<memcached_return_t> value.
35 To find out more information please check:
36 L<https://launchpad.net/libmemcached>
40 Brian Aker, E<lt>brian@tangent.orgE<gt>
44 memcached(1) libmemcached(3)