Memcached 简明教程
Memcached - Prepend Data
Memcached prepend 命令用于在现有键中添加一些数据。将在键的现有数据前存储数据。
Syntax
Memcached prepend 命令的基本语法如下所示 −
prepend key flags exptime bytes [noreply]
value
语法中的关键字的说明如下−
-
key − 它是按键存储和检索 Memcached 中的数据的名称。
-
flags :它是一个 32 位无符号整数,服务器与用户提供的数据一起存储该整数,并在检索该项时与该数据一同返回。
-
exptime − 是以秒计的过期时间。0 表示无延迟。如果 exptime 超过 30 天,则 Memcached 会将其用作过期的 UNIX 时间戳。
-
bytes :它是需要存储的数据块中的字节数。这是需要存储在 Memcached 中的数据长度。
-
noreply (optional) − 这个参数通知服务器不要发送任何回复。
-
value − 需要存储的数据。在使用上述选项执行命令后,数据需要传递到新行上。
Output
命令的输出如下所示:
STORED
-
STORED indicates success.
-
NOT_STORED 表示键在 Memcached 服务器中不存在。
-
CLIENT_ERROR indicates error.
Example
在以下示例中,我们在不存在的密钥中添加了一些数据。因此,Memcached 返回 NOT_STORED 。在此之后,我们设置一个密钥并在其中置入数据。
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
Prepend Data Using Java Application
要向 Memcached 服务器中置入数据,你需要使用 Memcached prepend 方法。
Example
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 successful");
System.out.println("set status:"+mcc.set("tutorialspoint", 900, "memcached").isDone());
// Get value from cache
System.out.println("Get from Cache:"+mcc.get("tutorialspoint"));
// now append some data into existing key
System.out.println("Prepend to cache:"+mcc.prepend("tutorialspoint", "redis").isDone());
// get the updated key
System.out.println("Get from Cache:"+mcc.get("tutorialspoint"));
}
}