1.字符串类型

Redis:0>set email [email protected]
"OK"
Redis:0>getrange email 0 3  #获得 0 ~ 3的字符串
"scot"
Redis:0>strlen email
"13"
Redis:0>setex username 5 scott #设置过期时间5s
"OK"
Redis:0>get username
"scott"
Redis:0>get username
null
Redis:0>mset username jack sex male age 24#一次添加多组数据
"OK"
Redis:0>mget username sex age#一次获取多组数据
 1)  "jack"
 2)  "male"
 3)  "24"
Redis:0>

向字符串结尾添加数据

Redis:0>setex temp 60 ABCD
"OK"
Redis:0>get temp
"ABCD"
Redis:0>append temp 1234
"8"
Redis:0>get temp
"ABCD1234"
Redis:0>

对字符串增加数字指令

Redis:0>setex num 100 0
"OK"
Redis:0>incr num  #自增加1
"1"
Redis:0>get num
"1"
Redis:0>incrby num 35
"36"
Redis:0>get num
"36"
Redis:0>incrby num -1  #增加整数
"35"
Redis:0>incrbyfloat num 0.5  #增加浮点数
"35.5"
Redis:0>

字符串的减法(没有减去浮点数的方法!)

Redis:0>setex num 200 10
"OK"
Redis:0>decr num
"9"
Redis:0>decrby num 5
"4"

你可能感兴趣的:(1.字符串类型)