summaryrefslogtreecommitdiff
path: root/docs/source/libmemcachedutil.rst
blob: 692aa2ef444bda18ff2d6f4b7c4439f77a674b2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
===========
Introducing
===========


Utility library for libmemcached


--------
SYNOPSIS
--------

.. code-block:: c

   cc [ flag ... ] file ... -lmemcachedutil
 
   #include <libmemcached/memcached_util.h>



-----------
DESCRIPTION
-----------


:program:`libmemcachedutil`  is a small and thread-safe client library that 
provides extra functionality built on top of :program:`libmemcached`.


-------
THREADS
-------


Do not try to access an instance of :c:type:`memcached_st` from multiple threads
at the same time. If you want to access memcached from multiple threads
you should either clone the :c:type:`memcached_st`, or use the memcached pool
implementation. see :c:func:`memcached_pool_create`.


----
HOME
----


To find out more information please check:
`http://libmemcached.org/ <http://libmemcached.org/>`_


--------
SEE ALSO
--------


:manpage:`libmemcached(3)` :manpage:`memcached_pool_create(3)` :manpage:`memcached_pool_destroy(3)` :manpage:`memcached_pool_pop(3)` :manpage:`memcached_pool_push(3)`