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_VERBOSITY(3)						   libmemcached 					    MEMCACHED_VERBOSITY(3)

NAME
memcached_verbosity - libmemcached Documentation Modifiy verbosity of servers SYNOPSIS
#include <libmemcached/memcached.h> memcached_return_t memcached_verbosity(memcached_st *ptr, uint32_t verbosity) Compile and link with -lmemcached DESCRIPTION
memcached_verbosity() modifies the "verbosity" of the memcached(1) servers referenced in the memcached_st parameter. RETURN
A value of type memcached_return_t is returned. On success that value will be MEMCACHED_SUCCESS. Use memcached_strerror() to translate this value to a printable string. HOME
To find out more information please check: http://libmemcached.org/ SEE ALSO
memcached(1) libmemcached(3) memcached_strerror(3) AUTHOR
Brian Aker COPYRIGHT
2011-2013, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.16 January 31, 2013 MEMCACHED_VERBOSITY(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