1、操作库的指令
1、清除当前库---flushdb
2、清除所有库---flushAll
2、操作key的指令
最常用的指令get、set
1)set key value
2)get key
基础指令
1、del
删除单个:del key 、批量删除:del key1 key2 key3
2、exists
判断key是否存在:exists key,若存在返回1,否则返回0
3、expire
当key过期时,自动被删除:expire key seconds,设置成功则返回1
4、keys pattern
查找所有符合给定模式的key
a、keys *
查找所有key
b、keys h?llo
匹配hello、hallo、hhllo、hollo等
c、keys h[ae]llo
匹配hello、hallo