X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=docs%2Fsource%2Fmemcached_user_data.rst;fp=docs%2Fsource%2Fmemcached_user_data.rst;h=0000000000000000000000000000000000000000;hb=28c4d79e109e11d7d2a9f3189de57da28302ec68;hp=b45f192e09ba07cc8b99136ce8c75cd0bac40ced;hpb=47a71801cb4e7b926321771765f35707783d2e30;p=awesomized%2Flibmemcached diff --git a/docs/source/memcached_user_data.rst b/docs/source/memcached_user_data.rst deleted file mode 100644 index b45f192e..00000000 --- a/docs/source/memcached_user_data.rst +++ /dev/null @@ -1,65 +0,0 @@ -============================================== -Storing custom user information in the client. -============================================== - -.. index:: object: memcached_st - -Manage user specific data - - -------- -LIBRARY -------- - - -C Client Library for memcached (libmemcached, -lmemcached) - - --------- -SYNOPSIS --------- - - -#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. - - - --------- -SEE ALSO --------- - -.. only:: man - - :manpage:`memcached(1)` :manpage:`libmemcached(3)` -