1..::docs::memcached_version(3)   libmemcached   ..::docs::memcached_version(3)
2
3
4

NAME

6       memcached_lib_version, memcached_version - Get library version
7

LIBRARY

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

SYNOPSIS

12         #include <memcached.h>
13
14         const char *
15           memcached_lib_version(void)
16
17
18         memcached_return
19           memcached_version(memcached_st *ptr)
20

DESCRIPTION

22       memcached_lib_version() is used to return a simple version string
23       representing the libmemcached version (version of the client library,
24       not server)
25
26       memcached_version() is used to set the major, minor, and micro versions
27       of each memcached server being used by the memcached_st connection
28       structure. It returns the memcached server return code.
29

RETURN

31       A string with the version of libmemcached driver is returned from
32       memcached_lib_version()
33
34       A value of type "memcached_return" is returned from memcached_version()
35       On success that value will be "MEMCACHED_SUCCESS". If called with the
36       "MEMCACHED_BEHAVIOR_USE_UDP" behavior set, the value
37       "MEMCACHED_NOT_SUPPORTED" will be returned. Use memcached_strerror() to
38       translate this value to a printable string.
39

HOME

41       To find out more information please check:
42       <http://tangent.org/552/libmemcached.html>
43

AUTHOR

45       Brian Aker, <brian@tangent.org>
46

SEE ALSO

48       memcached(1) libmemcached(3) memcached_strerror(3)
49
50
51
52                                  2009-05-20    ..::docs::memcached_version(3)
Impressum