From f2a59b728c20f7fe78874dd41187ab3fb2db6c7e Mon Sep 17 00:00:00 2001 From: Brian Aker Date: Sun, 16 Feb 2014 01:06:40 -0800 Subject: Fix for building docs. --- docs/source/memcached_user_data.rst | 75 +++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 docs/source/memcached_user_data.rst (limited to 'docs/source/memcached_user_data.rst') diff --git a/docs/source/memcached_user_data.rst b/docs/source/memcached_user_data.rst new file mode 100644 index 00000000..a0bc602b --- /dev/null +++ b/docs/source/memcached_user_data.rst @@ -0,0 +1,75 @@ +============================================== +Storing custom user information in the client. +============================================== + +.. index:: object: memcached_st + +Manage user specific data + + +------- +LIBRARY +------- + + +C Client Library for memcached (libmemcached, -lmemcached) + + +-------- +SYNOPSIS +-------- + + + +.. code-block:: c + +#include + +.. c:function:: void *memcached_get_user_data (memcached_st *ptr) + +.. c:function:: 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. + +:c:func:`memcached_set_user_data` is used to set the user specific data in the +:c:type:`memcached_st` structure. + +:c:func:`memcached_get_user_data` is used to retrieve the user specific data in the :c:type:`memcached_st` structure. + + +------ +RETURN +------ + + +:c:func:`memcached_set_user_data` returns the previous value of the user specific data. + +:c:func:`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 +-------- + + +:manpage:`memcached(1)` :manpage:`libmemcached(3)` + -- cgit v1.2.1