Memcached - ล้างข้อมูล
Memcached flush_allคำสั่งใช้เพื่อลบข้อมูลทั้งหมด (คู่คีย์ - ค่า) จากเซิร์ฟเวอร์ Memcached ยอมรับพารามิเตอร์ทางเลือกที่เรียกว่าtime ที่กำหนดเวลาหลังจากที่จะล้างข้อมูล Memcached
ไวยากรณ์
ไวยากรณ์พื้นฐานของ Memcached flush_all คำสั่งดังแสดงด้านล่าง -
flush_all [time] [noreply]
คำสั่งดังกล่าวส่งคืนตกลงเสมอ
ตัวอย่าง
ในตัวอย่างต่อไปนี้เราจัดเก็บข้อมูลบางส่วนไว้ในเซิร์ฟเวอร์ Memcached จากนั้นจึงล้างข้อมูลทั้งหมด
set tutorialspoint 0 900 9
memcached
STORED
get tutorialspoint
VALUE tutorialspoint 0 9
memcached
END
flush_all
OK
get tutorialspoint
END
ล้างข้อมูลโดยใช้ Java Application
ในการล้างข้อมูลจากเซิร์ฟเวอร์ Memcached คุณต้องใช้ Memcached flush วิธี.
ตัวอย่าง
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());
}
}
เอาต์พุต
ในการคอมไพล์และรันโปรแกรมคุณจะเห็นผลลัพธ์ต่อไปนี้ -
Connection to server successfully
set status:true
Get from Cache:5
Increment value:7
Decrement value:6
Get from Cache:6
Clear data:true