Merge Trond
[m6w6/libmemcached] / docs / libmemcachedutil.pod
index d5c6b485646f53fdeac4fa0452f0d044591dd330..fd2e4f6274bef2564f705e2555b6327c15d34ae6 100644 (file)
@@ -17,22 +17,21 @@ C Client Library containing utility functions for libmemcached (libmemcachedutil
 B<libmemcachedutil> is a small and thread-safe client library that provides
 extra functionality built on top of B<libmemcached>.
 
-=head1 THREADS AND PROCESSES
+=head1 THREADS
 
-When using threads or forked processes it is important to keep an instance
-of C<memcached_st> per process or thread. Without creating your own locking
-structures you can not share a single C<memcached_st>. You can though call
-memcached_quit(3) on a C<memcached_st> and then use the resulting cloned
-structure.
+Do not try to access an instance of C<memcached_st> from multiple threads
+at the same time. If you want to access memcached from multiple threads
+you should either clone the C<memcached_st>, or use the memcached pool
+implementation. see memcached_pool_create(3).
 
 =head1 HOME
 
 To find out more information please check:
-L<http://tangent.org/552/libmemcached.html>
+L<https://launchpad.net/libmemcached>
 
 =head1 AUTHOR
 
-Trond Norbye, E<lt>trond.norbye@sun.comE<gt>
+Trond Norbye, E<lt>trond.norbye@gmail.comE<gt>
 
 =head1 SEE ALSO