(PECL memcached >= 0.1.0)
Memcached::casByKey — Comparar y cambiar un elemento en un servidor
$cas_token,$server_key,$key,$value,$expiration = 0
   Memcached::casByKey() es funcionalmente equivalente
   a Memcached::cas(), pero la variable
   server_key puede ser utilizada para dirigir
   la clave key a un servidor específico.
  
cas_tokenValor único, asociado a un elemento existente. Generado por memcache.
server_keyThe 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.
keyThe key under which to store the value.
valueThe value to store.
expirationThe 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_DATA_EXISTS si el elemento que se intenta
   almacenar ha sido modificado desde la última lectura.
  
