Memcached - Excluir chave
Memcached delete comando é usado para excluir uma chave existente do servidor Memcached.
Sintaxe
A sintaxe básica do Memcached delete comando é como mostrado abaixo -
delete key [noreply]
Resultado
O comando CAS pode produzir um dos seguintes resultados -
DELETED indica exclusão bem-sucedida.
ERROR indica erro ao excluir dados ou sintaxe incorreta.
NOT_FOUND indica que a chave não existe no servidor Memcached.
Exemplo
Neste exemplo, usamos tutorialspoint como uma chave e armazenamos memcached nele com um tempo de expiração de 900 segundos. Depois disso, ele exclui a chave armazenada.
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
Excluir dados usando aplicativo Java
Para excluir dados de um servidor Memcached, você precisa usar o Memcached delete método.
Exemplo
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());
}
}
Resultado
Ao compilar e executar o programa, você verá a seguinte saída -
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