记录一下redis中的基本命令。redis中有redis-cli工具客户端,使用这个客户端来发送一些命令

一、redis-cli的使用

 1、redis-cli使用之发送命令

redis中基本命令-LMLPHP

2、redis-cli使用之命令返回值

redis中基本命令-LMLPHP

二、redis的多数据库

redis中基本命令-LMLPHP

FLUSHALL  --清空所有数据库的所有数据

FLUSHDB  --清空当前所在数据库的数据

配置数据库的数量:

redis中基本命令-LMLPHP

三、redis的基本命令

1、KEYS

redis中基本命令-LMLPHP

2、EXISTS

redis中基本命令-LMLPHP

3、DEL

redis中基本命令-LMLPHP

4、TYPE

redis中基本命令-LMLPHP

5、HELP

redis中基本命令-LMLPHP

四、redis的字符串数据类型

1、字符串类型

redis中基本命令-LMLPHP

2、GET、SET命令

redis中基本命令-LMLPHP

3、INCR

redis中基本命令-LMLPHP

4、INCRBY

redis中基本命令-LMLPHP

5、DECR、DECRBY

redis中基本命令-LMLPHP

6、APPEND

redis中基本命令-LMLPHP

7、STRLEN

redis中基本命令-LMLPHP

8、MSET、MGET

redis中基本命令-LMLPHP

05-28 17:23