
Paste_Image.png
string

Paste_Image.png
set string1 tong
get string1
自增
incr string2
减2
decrby string2 2

Paste_Image.png
list

Paste_Image.png
lpush list1 12
rpop list1
llen list1

Paste_Image.png
set

Paste_Image.png
添加
sadd set1 13
查看有多少个元素
scard set1
集合中是否有该元素
sismember set1 13
删除集合中的元素
srem set1 13

Paste_Image.png
hash

Paste_Image.png
hset hash1 key1 12
hget hash1 key1
hlen hash1
hmget hash1 key1 key2 key3

Paste_Image.png
sort set

Paste_Image.png
按照值value大小排序
zadd zset1 10.2 val1
查看有多少个元素
zcard zset1
查看指定范围的数据
zrange zset1 0 2 withscores
查看指定数据的排名
zrank zset1 val2

Paste_Image.png

Paste_Image.png