(PECL memcached >= 0.1.0)
Memcached::prependByKey — Prefija un elemento existente
   Memcached::prependByKey() es funcionalmente equivalente
   a Memcached::prepend(), pero la variable libre
   server_key puede ser utilizada para dirigir
   la clave key a un servidor específico.
  
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.
keyLa clave del elemento a prefijar.
valueLa cadena a prefijar.
   Esta función retorna true en caso de éxito o false si ocurre un error.
   Devuelve null si la compresión está activada.
  
