X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fsource%2Flibmemcached%2Fmemcached_user_data.rst;h=7d9e01799dddd8cf54677fd65ee0c95a0f198e32;hb=a08ebebc7f7f2d86eb13151fb230cbfcd17dc090;hp=a0437df38b39d3d5179c60b7495c41184fd85f54;hpb=0a654f848e13d470fb07b044347f2e91d6941807;p=awesomized%2Flibmemcached diff --git a/docs/source/libmemcached/memcached_user_data.rst b/docs/source/libmemcached/memcached_user_data.rst index a0437df3..7d9e0179 100644 --- a/docs/source/libmemcached/memcached_user_data.rst +++ b/docs/source/libmemcached/memcached_user_data.rst @@ -1,49 +1,51 @@ -============================================== -Storing custom user information in the client. -============================================== - -.. index:: object: memcached_st - -Manage user specific data - -LIBRARY -------- - -C Client Library for memcached (libmemcached, -lmemcached) +Storing custom information in the client +======================================== SYNOPSIS -------- #include + Compile and link with -lmemcached .. function:: void *memcached_get_user_data (memcached_st *ptr) + :param ptr: pointer to initialized `memcached_st` struct + :returns: opaque pointer to the user supplied data + .. function:: void *memcached_set_user_data (memcached_st *ptr, void *data) -Compile and link with -lmemcached + :param ptr: pointer to initialized `memcached_st` struct + :param data: opaque pointer to user supplied data + :returns: opaque pointer to the previously set `data` DESCRIPTION ----------- -libmemcached(3) allows you to store a pointer to a user specific data inside +`libmemcached` allows you to store a pointer to a user specific data inside the memcached_st structure. :func:`memcached_set_user_data` is used to set the user specific data in the :type:`memcached_st` structure. -:func:`memcached_get_user_data` is used to retrieve the user specific data in the :type:`memcached_st` structure. +:func:`memcached_get_user_data` is used to retrieve the user specific data in +the :type:`memcached_st` structure. RETURN VALUE ------------ :func:`memcached_set_user_data` returns the previous value of the user specific data. -:func:`memcached_get_user_data` returns the current value uf the user specific data. +:func:`memcached_get_user_data` returns the current value of the user specific data. SEE ALSO -------- .. only:: man - :manpage:`memcached(1)` :manpage:`libmemcached(3)` + :manpage:`memcached(1)` + :manpage:`libmemcached(3)` + +.. only:: html + * :manpage:`memcached(1)` + * :doc:`../libmemcached`