Memcached - คีย์ลบ
Memcached delete คำสั่งใช้เพื่อลบคีย์ที่มีอยู่ออกจากเซิร์ฟเวอร์ Memcached
ไวยากรณ์
ไวยากรณ์พื้นฐานของ Memcached delete คำสั่งดังแสดงด้านล่าง -
delete key [noreply]
เอาต์พุต
คำสั่ง CAS อาจให้ผลลัพธ์อย่างใดอย่างหนึ่งต่อไปนี้ -
DELETED แสดงว่าการลบสำเร็จ
ERROR ระบุข้อผิดพลาดขณะลบข้อมูลหรือไวยากรณ์ผิด
NOT_FOUND บ่งชี้ว่าไม่มีคีย์ในเซิร์ฟเวอร์ Memcached
ตัวอย่าง
ในตัวอย่างนี้เราใช้ tutorialspoint เป็นคีย์และเก็บ 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 Application
ในการลบข้อมูลจากเซิร์ฟเวอร์ Memcached คุณต้องใช้ Memcached delete วิธี.
ตัวอย่าง
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