Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

libmemcachedutil(3) [centos man page]

LIBMEMCACHEDUTIL(3)						   libmemcached 					       LIBMEMCACHEDUTIL(3)

NAME
libmemcachedutil - libmemcached Documentation Utility library for libmemcached SYNOPSIS
cc [ flag ... ] file ... -lmemcachedutil #include <libmemcached/memcached_util.h> DESCRIPTION
libmemcachedutil is a small and thread-safe client library that provides extra functionality built on top of libmemcached. THREADS
Do not try to access an instance of memcached_st from multiple threads at the same time. If you want to access memcached from multiple threads you should either clone the memcached_st, or use the memcached pool implementation. see memcached_pool_create(). HOME
To find out more information please check: http://libmemcached.org/ SEE ALSO
libmemcached(3) memcached_pool_create(3) memcached_pool_destroy(3) memcached_pool_pop(3) memcached_pool_push(3) AUTHOR
Brian Aker COPYRIGHT
2011-2013, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.16 January 31, 2013 LIBMEMCACHEDUTIL(3)

Check Out this Related Man Page

MEMCACHED_STRERROR(3)						   libmemcached 					     MEMCACHED_STRERROR(3)

NAME
memcached_strerror - libmemcached Documentation SYNOPSIS
#include <libmemcached/memcached.h> const char * memcached_strerror(memcached_st *ptr, memcached_return_t rc) Compile and link with -lmemcached DESCRIPTION
memcached_strerror() takes a memcached_return_t value and returns a string describing the error. This string must not be modified by the application. memcached_return_t values are returned from nearly all libmemcached(3) functions. memcached_return_t values are of an enum type so that you can set up responses with switch/case and know that you are capturing all possi- ble return values. RETURN
memcached_strerror() returns a string describing a memcached_return_t value. HOME
To find out more information please check: http://libmemcached.org/ SEE ALSO
memcached(1) libmemcached(3) AUTHOR
Brian Aker COPYRIGHT
2011-2013, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.16 January 31, 2013 MEMCACHED_STRERROR(3)
Man Page

2 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Command to find number of threads

Shell script to find number of threads for relay http (0 Replies)
Discussion started by: rajeev3062002
0 Replies

2. Shell Programming and Scripting

Grep values on alternate lines

Hi, I have a file like 2011|ACC|.* 2013|ACC|.* 2011|ACCC|.* 2013|ACCC|.* 2013|ACCV|.* 2011|ADB|.* 2013|ADB|.* 2011|ADBC|.* 2013|ADBC|.* 2011|AIA|.* 2013|AXJ|.* 2013|NNN|.* .* represnts any alphanumeric characters after this part of the string I need a code to return only the... (3 Replies)
Discussion started by: sam05121988
3 Replies