Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

memcached_verbosity(3) [centos 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)

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, Brian Aker DataDifferential, http://datadifferential.com/ 1.0.8 May 22, 2012 MEMCACHED_STRERROR(3)
Man Page

We Also Found This Discussion For You

1. 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