keys /查看所有的key exists key名字/判斷某個key是否存在 move key db/將可以從當前庫移動到庫db expire key 秒數/為給定的key設置過期時間 ttl key/查看key還有多長時間過期, 1表示永不過期, 2不是已經過期 type key/查看key是什 ...
keys */查看所有的key
remoteSelf:1>select 0
"OK"
remoteSelf:0>keys *
1) "SUBCRIBEMAP"
2) "test"
exists key名字/判斷某個key是否存在
# 不存在返回0
remoteSelf:0>exists aaa
"0"
# 存在返回1
remoteSelf:0>exists test
"1"