Merge bzr://10.0.3.21 Build: jenkins-Libmemcached-469
[awesomized/libmemcached] / docs / libmemcachedutil.rst
1 ===========
2 Introducing
3 ===========
4
5
6 Utility library for libmemcached
7
8
9 --------
10 SYNOPSIS
11 --------
12
13 .. code-block:: c
14
15 cc [ flag ... ] file ... -lmemcachedutil
16
17 #include <libmemcached/memcached_util.h>
18
19
20
21 -----------
22 DESCRIPTION
23 -----------
24
25
26 :program:`libmemcachedutil` is a small and thread-safe client library that
27 provides extra functionality built on top of :program:`libmemcached`.
28
29
30 -------
31 THREADS
32 -------
33
34
35 Do not try to access an instance of :c:type:`memcached_st` from multiple threads
36 at the same time. If you want to access memcached from multiple threads
37 you should either clone the :c:type:`memcached_st`, or use the memcached pool
38 implementation. see :c:func:`memcached_pool_create`.
39
40
41 ----
42 HOME
43 ----
44
45
46 To find out more information please check:
47 `http://libmemcached.org/ <http://libmemcached.org/>`_
48
49
50 --------
51 SEE ALSO
52 --------
53
54
55 :manpage:`libmemcached(3)` :manpage:`memcached_pool_create(3)` :manpage:`memcached_pool_destroy(3)` :manpage:`memcached_pool_pop(3)` :manpage:`memcached_pool_push(3)`
56