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
查看指定范圍的數(shù)據(jù)
zrange zset1 0 2 withscores
查看指定數(shù)據(jù)的排名
zrank zset1 val2
Paste_Image.png
Paste_Image.png