Remove need for build file.
[awesomized/libmemcached] / docs / libmemcachedutil.pod
1 =head1 NAME
2
3 libmemcachedutil - Utility library for libmemcached
4
5 =head1 LIBRARY
6
7 C Client Library containing utility functions for libmemcached (libmemcachedutil, -lmemcachedutil)
8
9 =head1 SYNOPSIS
10
11 cc [ flag ... ] file ... -lmemcachedutil
12
13 #include <libmemcached/memcached_util.h>
14
15 =head1 DESCRIPTION
16
17 B<libmemcachedutil> is a small and thread-safe client library that provides
18 extra functionality built on top of B<libmemcached>.
19
20 =head1 THREADS
21
22 Do not try to access an instance of C<memcached_st> from multiple threads
23 at the same time. If you want to access memcached from multiple threads
24 you should either clone the C<memcached_st>, or use the memcached pool
25 implementation. see memcached_pool_create(3).
26
27 =head1 HOME
28
29 To find out more information please check:
30 L<https://launchpad.net/libmemcached>
31
32 =head1 AUTHOR
33
34 Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
35
36 =head1 SEE ALSO
37
38 libmemcached(3) memcached_pool_create(3) memcached_pool_destroy(3) memcached_pool_pop(3) memcached_pool_push(3)
39
40 =cut