1..::docs::memcached_strerror(3) libmemcached ..::docs::memcached_strerror(3)
2
3
4
6 memcached_strerror - Get error string
7
9 C Client Library for memcached (libmemcached, -lmemcached)
10
12 #include <memcached.h>
13
14 char *memcached_strerror (memcached_st *ptr,
15 memcached_return rc);
16
18 memcached_strerror() takes a "memcached_return" value and returns a
19 string describing the error.
20
21 This string must not be modified by the application.
22
23 "memcached_return" values are returned from nearly all libmemcached(3)
24 functions.
25
26 "memcached_return" values are of an enum type so that you can set up
27 responses with switch/case and know that you are capturing all possible
28 return values.
29
31 memcached_strerror() returns a string describing a "memcached_return"
32 value.
33
35 To find out more information please check:
36 <http://tangent.org/552/libmemcached.html>
37
39 Brian Aker, <brian@tangent.org>
40
42 memcached(1) libmemcached(3)
43
44
45
46 2009-05-20 ..::docs::memcached_strerror(3)