Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

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

We Also Found This Discussion For You

1. Shell Programming and Scripting

Setting Verbosity Option of Script

I have a script and I want the verbosity option to work in the following way: User can either set quiet (no verbosity), use default verbosity level (when doing -v), or set a level value (when doing -v=2 or --vrbLevel=2). I am making some more progress on this and am thinking of this idea. ... (4 Replies)
Discussion started by: kristinu
4 Replies