Memcached - Limpar dados
Memcached flush_allcomando é usado para excluir todos os dados (pares de valores-chave) do servidor Memcached. Ele aceita um parâmetro opcional chamadotime isso define um tempo após o qual os dados do Memcached devem ser apagados.
Sintaxe
A sintaxe básica do Memcached flush_all comando é como mostrado abaixo -
flush_all [time] [noreply]
O comando acima sempre retorna OK.
Exemplo
No exemplo a seguir, armazenamos alguns dados no servidor Memcached e, em seguida, apagamos todos os dados.
set tutorialspoint 0 900 9
memcached
STORED
get tutorialspoint
VALUE tutorialspoint 0 9
memcached
END
flush_all
OK
get tutorialspoint
END
Limpar dados usando aplicativo Java
Para limpar os dados de um servidor Memcached, você precisa usar o Memcached flush 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 sucessfully");
System.out.println("set status:"+mcc.set("count", 900, "5").isDone());
// Get value from cache
System.out.println("Get from Cache:"+mcc.get("count"));
// now increase the stored value
System.out.println("Increment value:"+mcc.incr("count", 2));
// now decrease the stored value
System.out.println("Decrement value:"+mcc.decr("count", 1));
// now get the final stored value
System.out.println("Get from Cache:"+mcc.get("count"));
// now clear all this data
System.out.println("Clear data:"+mcc.flush().isDone());
}
}
Resultado
Ao compilar e executar o programa, você verá a seguinte saída -
Connection to server successfully
set status:true
Get from Cache:5
Increment value:7
Decrement value:6
Get from Cache:6
Clear data:true