Memcached - Excluir dados
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
Se a chave for excluída com sucesso, ele retornará DELETED. Se a chave não for encontrada, retorna NOT_FOUND, caso contrário, retorna ERROR.
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 net.spy.memcached.MemcachedClient;
public class MemcachedJava {
public static void main(String[] args) {
// Connecting to Memcached server on localhost
MemcachedClient mcc = new MemcachedClient(new
InetSocketAddress("127.0.0.1", 11211));
System.out.println("Connection to server successful");
System.out.println("set status:"+mcc.set("tutorialspoint", 900, "memcached").done);
// Get value from cache
System.out.println("Get from Cache:"+mcc.get("tutorialspoint"));
// delete value from cache
System.out.println("Delete from Cache:"+mcc.delete("tutorialspoint").isDone());
// check whether value exists or not
System.out.println("Get from Cache:"+mcc.get("tutorialspoint"));
}
}
Resultado
Ao compilar e executar o programa, você verá a seguinte saída -
Connection to server successful
set status:true
Get from Cache:memcached
Delete from Cache:true
Get from Cache:null