docs: sanitize
[awesomized/libmemcached] / docs / source / libmemcachedutil.rst
1 ============================
2 Introducing libmemcachedutil
3 ============================
4
5
6 Utility library for libmemcached
7
8
9 --------
10 SYNOPSIS
11 --------
12
13 #include <libmemcached/memcached_util.h>
14 Compile and link with -lmemcachedutil
15
16
17 -----------
18 DESCRIPTION
19 -----------
20
21
22 `libmemcachedutil` is a small and thread-safe client library that
23 provides extra functionality built on top of `libmemcached`.
24
25
26 -------
27 THREADS
28 -------
29
30 Do not try to access an instance of :c:type:`memcached_st` from multiple threads
31 at the same time. If you want to access memcached from multiple threads
32 you should either clone the :c:type:`memcached_st`, or use the memcached pool
33 implementation. See :c:func:`memcached_pool_create`.
34
35 --------
36 SEE ALSO
37 --------
38
39 .. only:: man
40
41 :manpage:`libmemcached(3)`
42 :manpage:`memcached_pool(3)`
43 :manpage:`memcached_pool_destroy(3)`
44 :manpage:`memcached_pool_pop(3)`
45 :manpage:`memcached_pool_push(3)`
46
47 .. only:: html
48
49 * :doc:`libmemcached`
50 * :doc:`memcached_pool`