1memcached_strerror.pop(3)     memcached_strerror     memcached_strerror.pop(3)
2
3
4

NAME

6       memcached_strerror - Get error string
7

LIBRARY

9       C Client Library for memcached (libmemcached, -lmemcached)
10

SYNOPSIS

12         #include <memcached.h>
13
14         const char *
15           memcached_strerror (memcached_st *ptr,
16                               memcached_return_t rc);
17

DESCRIPTION

19       memcached_strerror() takes a "memcached_return_t" value and returns a
20       string describing the error.
21
22       This string must not be modified by the application.
23
24       "memcached_return_t" values are returned from nearly all
25       libmemcached(3) functions.
26
27       "memcached_return_t" values are of an enum type so that you can set up
28       responses with switch/case and know that you are capturing all possible
29       return values.
30

RETURN

32       memcached_strerror() returns a string describing a "memcached_return_t"
33       value.
34

HOME

36       To find out more information please check:
37       <https://launchpad.net/libmemcached>
38

AUTHOR

40       Brian Aker, <brian@tangent.org>
41

SEE ALSO

43       memcached(1) libmemcached(3)
44
45
46
47                                  2010-06-28         memcached_strerror.pop(3)
Impressum