Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

memcached_get_user_data(3) [debian man page]

MEMCACHED_GET_USER_DATA(3)					   libmemcached 					MEMCACHED_GET_USER_DATA(3)

NAME
memcached_get_user_data - libmemcached Documentation Manage user specific data LIBRARY
C Client Library for memcached (libmemcached, -lmemcached) SYNOPSIS
#include <libmemcached/memcached.h> void *memcached_get_user_data(memcached_st *ptr) void *memcached_set_user_data(memcached_st *ptr, void *data) Compile and link with -lmemcached DESCRIPTION
libmemcached(3) allows you to store a pointer to a user specific data inside the memcached_st structure. memcached_set_user_data() is used to set the user specific data in the memcached_st structure. memcached_get_user_data() is used to retrieve the user specific data in the memcached_st structure. RETURN
memcached_set_user_data() returns the previous value of the user specific data. memcached_get_user_data() returns the current value uf the user specific data. HOME
To find out more information please check: http://libmemcached.org/ SEE ALSO
memcached(1) libmemcached(3) AUTHOR
Brian Aker COPYRIGHT
2011, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.8 May 22, 2012 MEMCACHED_GET_USER_DATA(3)

Check Out this Related Man Page

MEMCACHED_VERBOSITY(3)						   libmemcached 					    MEMCACHED_VERBOSITY(3)

NAME
memcached_verbosity - libmemcached Documentation Modifiy verbosity of servers SYNOPSIS
#include <libmemcached/memcached.h> memcached_return_t memcached_verbosity(memcached_st *ptr, uint32_t verbosity) Compile and link with -lmemcached DESCRIPTION
memcached_verbosity() modifies the "verbosity" of the memcached(1) servers referenced in the memcached_st parameter. RETURN
A value of type memcached_return_t is returned. On success that value will be MEMCACHED_SUCCESS. Use memcached_strerror() to translate this value to a printable string. HOME
To find out more information please check: http://libmemcached.org/ SEE ALSO
memcached(1) libmemcached(3) memcached_strerror(3) AUTHOR
Brian Aker COPYRIGHT
2011-2013, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.16 January 31, 2013 MEMCACHED_VERBOSITY(3)
Man Page