APPEND key value
127.0.0.1:6379> del url #确保url不存在,删除key (integer) 0 127.0.0.1:6379> APPEND url hello #自动创建,并设置value (integer) 5 127.0.0.1:6379> APPEND url -www.lmcjl.com #追加到末尾 (integer) 23 127.0.0.1:6379> GET url "hello-www.lmcjl.com"
APPEND timeseries "fixed-size sample"通过以下的方式可以访问时间序列的各项属性:
提示:我们可以考虑使用 UNIX 时间戳作为时间序列的键名,这样可以避免单个 key 因为保存过大的时间序列而占用大量内存。
下面是一个时间序列的例子:127.0.0.1:6379> APPEND ts "0054" (integer) 4 127.0.0.1:6379> APPEND ts "0048" (integer) 8 127.0.0.1:6379> GETRANGE ts 0 3 "0054" 127.0.0.1:6379> GETRANGE ts 4 7 "0048"
本文链接:http://task.lmcjl.com/news/19054.html