Memcached - 删除密钥


Memcached删除命令用于从 Memcached 服务器中删除现有密钥。

句法

Memcached删除命令的基本语法如下所示 -

delete key [noreply]

输出

CAS 命令可能会产生以下结果之一 -

  • DELETED表示删除成功。

  • ERROR表示删除数据时出错或语法错误。

  • NOT_FOUND表示该键在 Memcached 服务器中不存在。

例子

在这个例子中,我们使用tutorialspoint作为key,并在其中存储memcached,过期时间为900秒。此后,它会删除存储的密钥。

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

使用 Java 应用程序删除数据

要从Memcached服务器中删除数据,需要使用Memcached删除方法。

例子

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());
   }
}

输出

在编译和执行程序时,您会看到以下输出 -

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