Memcached預先添加/Prepend數據
Memcached的prepend命令用於添加一些數據到現有的鍵(key)。數據將存儲在鍵的現有的數據之前。
語法
memcached的prepend命令的基本語法如下所示:
prepend key flags exptime bytes [noreply] value
以上關鍵字的含義,如下圖所示:
-
key 是通過被存儲在Memcached的數據並從memcached獲取鍵(key)的名稱。
-
flags 是32位無符號整數,該項目被檢索時用的數據(由用戶提供),並沿數據返回服務器存儲。
-
exptime 以秒為過期時間,0表示冇有延遲,如果exptime大於30天,Memcached將使用它作為UNIX時間戳過期。
-
bytes 是在數據塊中,需要被存儲的字節數。基本上,這是一個需要存儲在memcached的數據的長度。
-
noreply (optional) 參數告知服務器不發送回複
-
value 是一個需要存儲的數據。數據需要將通過在新的一行後,執行命令上述選項。
輸出
上述命令的輸出如下所示:
STORED
-
STORED 表示成功。
-
NOT_STORED, 如果key不存在於memcached服務器。
-
CLIENT_ERROR, 如果有一些錯誤。
示例
prepend tutorials 0 900 5 redis NOT_STORED set tutorials 0 900 9 memcached STORED get tutorials VALUE tutorials 0 14 memcached END prepend tutorials 0 900 5 redis STORED get tutorials VALUE tutorials 0 14 redismemcached END
在上麵的例子中,我們將一些數據添加一個鍵,它不存在,memcached返回NOT_STORED ,之後我們已經建立一個鍵和預先添加數據到其中。
使用Java應用程序預先添加數據
要預先設置數據memcached服務器,需要使用memcached的prepend方法。
示例
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("yiibai", 900, "memcached").isDone()); //Get value from cache System.out.println("Get from Cache:"+mcc.get("yiibai")); // now append some data into existing key System.out.println("Prepend to cache:"+mcc.prepend("yiibai", "redis").isDone()); // get the updated key System.out.println("Get from Cache:"+mcc.get("yiibai")); } }
輸出
當上述程序編譯和運行,它提供了以下的輸出:
Connection to server successfully set status:true Get from Cache:memcached Prepend to cache:true Get from Cache:redismemcached