Memcached::touch

(PECL memcached >= 2.0.0)

Memcached::touchDefine una nueva expiración en un elemento

Descripción

public Memcached::touch(string $key, int $expiration = 0): bool

Memcached::touch() define un nuevo valor de expiración para una clave dada.

Parámetros

key

The key under which to store the value.

expiration

The expiration time, defaults to 0. See Expiration Times for more info.

Valores devueltos

Esta función retorna true en caso de éxito o false si ocurre un error. Use Memcached::getResultCode() if necessary.

Ver también

add a note

User Contributed Notes 2 notes

up
5
Dehumanizer
10 years ago
With PHP 5.4.41 and memcached 1.4.24 it works in ASCII mode as well.
up
5
Pramod Patil
10 years ago
This is only supported when binary protocol is enabled.
$obj = new Memcached();
$obj->setOption(\Memcached::OPT_BINARY_PROTOCOL, true);
To Top