Memcached - Eliminar clave
Memcached delete El comando se usa para eliminar una clave existente del servidor Memcached.
Sintaxis
La sintaxis básica de Memcached delete comando es como se muestra a continuación -
delete key [noreply]
Salida
El comando CAS puede producir uno de los siguientes resultados:
DELETED indica una eliminación exitosa.
ERROR indica error al eliminar datos o sintaxis incorrecta.
NOT_FOUND indica que la clave no existe en el servidor Memcached.
Ejemplo
En este ejemplo, usamos tutorialspoint como clave y almacenamos memcached en él con un tiempo de vencimiento de 900 segundos. Después de esto, elimina la clave almacenada.
set tutorialspoint 0 900 9
memcached
STORED
get tutorialspoint
VALUE tutorialspoint 0 9
memcached
END
delete tutorialspoint
DELETED
get tutorialspoint
END
delete tutorialspoint
NOT_FOUND
Eliminar datos con la aplicación Java
Para eliminar datos de un servidor Memcached, debe utilizar Memcached delete método.
Ejemplo
import java.net.InetSocketAddress;
import java.util.concurrent.Future;
import net.spy.memcached.MemcachedClient;
public class MemcachedJava {
public static void main(String[] args) {
try{
// Connecting to Memcached server on localhost
MemcachedClient mcc = new MemcachedClient(new InetSocketAddress("127.0.0.1", 11211));
System.out.println("Connection to server sucessful.");
// add data to memcached server
Future fo = mcc.set("tutorialspoint", 900, "World's largest online tutorials library");
// print status of set method
System.out.println("set status:" + fo.get());
// retrieve and check the value from cache
System.out.println("tutorialspoint value in cache - " + mcc.get("tutorialspoint"));
// try to add data with existing key
Future fo = mcc.delete("tutorialspoint");
// print status of delete method
System.out.println("delete status:" + fo.get());
// retrieve and check the value from cache
System.out.println("tutorialspoint value in cache - " + mcc.get("codingground"));
// Shutdowns the memcached client
mcc.shutdown();
}catch(Exception ex)
System.out.println(ex.getMessage());
}
}
Salida
Al compilar y ejecutar el programa, puede ver el siguiente resultado:
Connection to server successful
set status:true
tutorialspoint value in cache - World's largest online tutorials library
delete status:true
tutorialspoint value in cache - null