X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fsource%2Flibmemcached%2Fmemcached_user_data.rst;h=7d9e01799dddd8cf54677fd65ee0c95a0f198e32;hb=b7f446e55146456e368c3926347f4c771afcea8c;hp=0651224421965a5e699e1d521c77f57f7a9e7d18;hpb=bdf3398dac90a54d82aed65099290d51e92d4601;p=awesomized%2Flibmemcached diff --git a/docs/source/libmemcached/memcached_user_data.rst b/docs/source/libmemcached/memcached_user_data.rst index 06512244..7d9e0179 100644 --- a/docs/source/libmemcached/memcached_user_data.rst +++ b/docs/source/libmemcached/memcached_user_data.rst @@ -1,54 +1,51 @@ -============================================== -Storing custom user information in the client. -============================================== +Storing custom information in the client +======================================== -.. index:: object: memcached_st - -Manage user specific data - -------- -LIBRARY -------- - -C Client Library for memcached (libmemcached, -lmemcached) - --------- 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 ------- +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`