Redis常用命令

Posted Milton

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Redis常用命令相关的知识,希望对你有一定的参考价值。

连接

C:\>Redis-x64-3.0.501\redis-cli.exe -a foobared
127.0.0.1:6379> dbsize
(integer) 0

选择不同的db

127.0.0.1:6379> select 3
OK
127.0.0.1:6379[3]> dbsize
(integer) 6

清空db

127.0.0.1:6379[3]> dbsize
(integer) 6
127.0.0.1:6379[3]> flushdb
OK
127.0.0.1:6379[3]> dbsize
(integer) 0

 

以上是关于Redis常用命令的主要内容,如果未能解决你的问题,请参考以下文章

redis 常用命令

php Redis常用命令

提效小技巧——记录那些不常用的代码片段

Redis 入门和 RedisTemplate 常用方法(常用命令 + 案例源码)

常用的redis命令

6Redis-常用命令