string
set string1 tong
get string1
自增
incr string2
減2
decrby string2 2
list
lpush list1 12
rpop list1
llen list1
set
添加
sadd set1 13
查看有多少個元素
scard set1
集合中是否有該元素
sismember set1 13
刪除集合中的元素
srem set1 13
hash
hset hash1 key1 12
hget hash1 key1
hlen hash1
hmget hash1 key1 key2 key3
sort set
按照值value大小排序
zadd zset1 10.2 val1
查看有多少個元素
zcard zset1
查看指定范圍的數(shù)據(jù)
zrange zset1 0 2 withscores
查看指定數(shù)據(jù)的排名
zrank zset1 val2