Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

memcached(3) [php man page]

MEMCACHED(3)								 1							      MEMCACHED(3)

The Memcached class

INTRODUCTION
Represents a connection to a set of memcached servers. CLASS SYNOPSIS
Memcached Memcached o public Memcached::__construct ([string $persistent_id]) o public bool Memcached::add (string $key, mixed $value, [int $expiration]) o public bool Memcached::addByKey (string $server_key, string $key, mixed $value, [int $expiration]) o public bool Memcached::addServer (string $host, int $port, [int $weight]) o public bool Memcached::addServers (array $servers) o public bool Memcached::append (string $key, string $value) o public bool Memcached::appendByKey (string $server_key, string $key, string $value) o public bool Memcached::cas (float $cas_token, string $key, mixed $value, [int $expiration]) o public bool Memcached::casByKey (float $cas_token, string $server_key, string $key, mixed $value, [int $expiration]) o public int Memcached::decrement (string $key, [int $offset = 1], [int $initial_value], [int $expiry]) o public int Memcached::decrementByKey (string $server_key, string $key, [int $offset = 1], [int $initial_value], [int $expiry]) o public bool Memcached::delete (string $key, [int $time]) o public bool Memcached::deleteByKey (string $server_key, string $key, [int $time]) o public bool Memcached::deleteMulti (array $keys, [int $time]) o public bool Memcached::deleteMultiByKey (string $server_key, array $keys, [int $time]) o public array Memcached::fetch (void ) o public array Memcached::fetchAll (void ) o public bool Memcached::flush ([int $delay]) o public mixed Memcached::get (string $key, [callable $cache_cb], [float &$cas_token]) o public array Memcached::getAllKeys (void ) o public mixed Memcached::getByKey (string $server_key, string $key, [callable $cache_cb], [float &$cas_token]) o public bool Memcached::getDelayed (array $keys, [bool $with_cas], [callable $value_cb]) o public bool Memcached::getDelayedByKey (string $server_key, array $keys, [bool $with_cas], [callable $value_cb]) o public mixed Memcached::getMulti (array $keys, [array &$cas_tokens], [int $flags]) o public array Memcached::getMultiByKey (string $server_key, array $keys, [string &$cas_tokens], [int $flags]) o public mixed Memcached::getOption (int $option) o public int Memcached::getResultCode (void ) o public string Memcached::getResultMessage (void ) o public array Memcached::getServerByKey (string $server_key) o public array Memcached::getServerList (void ) o public array Memcached::getStats (void ) o public array Memcached::getVersion (void ) o public int Memcached::increment (string $key, [int $offset = 1], [int $initial_value], [int $expiry]) o public int Memcached::incrementByKey (string $server_key, string $key, [int $offset = 1], [int $initial_value], [int $expiry]) o public bool Memcached::isPersistent (void ) o public bool Memcached::isPristine (void ) o public bool Memcached::prepend (string $key, string $value) o public bool Memcached::prependByKey (string $server_key, string $key, string $value) o public bool Memcached::quit (void ) o public bool Memcached::replace (string $key, mixed $value, [int $expiration]) o public bool Memcached::replaceByKey (string $server_key, string $key, mixed $value, [int $expiration]) o public bool Memcached::resetServerList (void ) o public bool Memcached::set (string $key, mixed $value, [int $expiration]) o public bool Memcached::setByKey (string $server_key, string $key, mixed $value, [int $expiration]) o public bool Memcached::setMulti (array $items, [int $expiration]) o public bool Memcached::setMultiByKey (string $server_key, array $items, [int $expiration]) o public bool Memcached::setOption (int $option, mixed $value) o public bool Memcached::setOptions (array $options) o public void Memcached::setSaslAuthData (string $username, string $password) o public bool Memcached::touch (string $key, int $expiration) o public bool Memcached::touchByKey (string $server_key, string $key, int $expiration) PHP Documentation Group MEMCACHED(3)
Man Page