redis 基础 一:帮助文档的查看
博客地址:http://blog.lingang.me/2014/03/31/redis-jichu-1/
1、联上 redis-cli 之后输入 “?” 或者 “help”回车:
redis 127.0.0.1:6379> ?
redis-cli 2.6.14Type: “help @<group>” to get a list of commands in <group>
redis-cli 2.6.14Type: “help @<group>” to get a list of commands in <group>
“help <command>” for help on <command>
“help <tab>” to get a list of possible help topics
“quit” to exit
从这里可以得到的信息有:
输入 help @<group> 可以查到一组操作的使用,group 为操作的分组,比如 list 为一组操作,hash 为一组操作 server 为一组操作。比如输入 help @hash 能得到处理哈希类型的所有操作的解释以开始支持版本:
redis 127.0.0.1:6379> help @hash
HDEL key field [field ...]
summary: Delete one or more hash fields