标签:
set 1 jingya
del 1
exists 1
expire 1 10 // 10s后失效
ttl 1 //只需观察1
expireat 2 1455886380 // 使用unix时间戳设置过期时间
KEYS * 匹配数据库中所有 key 。
KEYS h?llo 匹配 hello , hallo 和 hxllo 等。 // ? 匹配 1个字符
KEYS h*llo 匹配 hllo 和 heeeeello 等。 // 匹配0个或者多个
KEYS h[ae]llo 匹配 hello 和 hallo ,但不匹配 hillo // 匹配任意一个
MIGRATE host port key destination-db timeout [COPY] [REPLACE]
MIGRATE 127.0.0.1 7777 greeting 0 1000
move key db
PERSIST key
Pexpire key milliseconds
PEXPIREAT key milliseconds-timestamp
PTTL key
Rename key newkey
RENAMENX key newkey
SORT key [BY pattern] [LIMIT offset count] [GET pattern [GET pattern ...]] [ASC | DESC] [ALPHA] [STORE destination]
Type Key
- 返回 key 所储存的值的类型
- none (key不存在)
- string (字符串)
- list (列表)
- set (集合)
- zset (有序集)
- hash (哈希表)
SCAN cursor [MATCH pattern] [COUNT count]
标签:
原文地址:http://www.cnblogs.com/weloveshare/p/5298066.html