描述 命令 实例
    查看key存储在哪个库 INFO keyspace INFO keyspace
    模糊删除key redis-cli -n 数据库名(0-15) keys Pattern | xargs redis-cli -n 数据库名(0-15) del redis-cli -h 10.189.72.15 -p 6379 -n 0 keys 01408489 | xargs redis-cli -h 10.189.72.15 -p 6379 -n 0 del
    启动Redis ./redis-server /etc/redis/redis.conf
    关闭客户端连接 redis-cli -h 127.0.0.1 -p 6379 shutdown