1MEMCACHED_LIB_VERSION(3) libmemcached MEMCACHED_LIB_VERSION(3)
2
3
4
6 memcached_lib_version - libmemcached Documentation
7
9 #include <libmemcached/memcached.h>
10
11 const char * memcached_lib_version(void)
12
13 memcached_return_t memcached_version(memcached_st *ptr)
14
15 Compile and link with -lmemcached
16
18 memcached_lib_version() is used to return a simple version string rep‐
19 resenting the libmemcached version (client library version, not server
20 version)
21
22 memcached_version() is used to set the major, minor, and micro versions
23 of each memcached server being used by the memcached_st connection
24 structure. It returns the memcached server return code.
25
27 memcached_lib_version() returns a string with the version of the lib‐
28 memcached driver.
29
30 A value of memcached_return_t is returned from :c:func:'memcached_ver‐
31 sion'
32
33 On success that value will be MEMCACHED_SUCCESS.
34
35 If called with the MEMCACHED_BEHAVIOR_USE_UDP() behavior set, the value
36 MEMCACHED_NOT_SUPPORTED will be returned.
37
38 Use memcached_strerror() to translate this value to a printable string.
39
41 To find out more information please check: http://libmemcached.org/
42
44 memcached(1) libmemcached(3) memcached_strerror(3)
45
47 Brian Aker
48
50 2011-2013, Brian Aker DataDifferential, http://datadifferential.com/
51
52
53
54
551.0.18 February 09, 2014 MEMCACHED_LIB_VERSION(3)