(PECL memcached >= 0.1.0)
Memcached::setByKey — Almacena un elemento en un servidor específico
$server_key
,$key
,$value
,$expiration
= 0
Memcached::setByKey() es funcionalmente equivalente a
Memcached::set(), excepto que la variable libre
server_key
puede ser utilizada para enviar la clave
key
a un servidor específico. Esto es útil si se desea
agrupar ciertas claves 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.
Use Memcached::getResultCode() if necessary.
Ejemplo #1 Ejemplo con Memcached::setByKey()
<?php
$m = new Memcached();
$m->addServer('localhost', 11211);
/* Conserva los bloques de IP en un servidor */
$m->setByKey('api-cache', 'block-ip:169.254.253.252', 1);
$m->setByKey('api-cache', 'block-ip:169.127.127.202', 1);
?>