(PECL memcached >= 0.1.0)
Memcached::replaceByKey — Remplaza un elemento específico en un servidor designado
$server_key
,$key
,$value
,$expiration
= 0
Memcached::replaceByKey() es funcionalmente equivalente
a la función Memcached::replace(), con la excepción de que
la variable libre server_key
puede ser utilizada para dirigir la
clave key
hacia un servidor específico. Esto es útil si se desea
mantener un grupo de variables agrupadas en un servidor.
server_key
The key identifying the server to store the value on or retrieve it from. Instead of hashing on the actual key for the item, we hash on the server key when deciding which memcached server to talk to. This allows related items to be grouped together on a single server for efficiency with multi operations.
key
The key under which to store the value.
value
The value to store.
expiration
The expiration time, defaults to 0. See Expiration Times for more info.
Esta función retorna true
en caso de éxito o false
si ocurre un error.
El método Memcached::getResultCode() va devolver
Memcached::RES_NOTSTORED
si la clave no existe.