1.字符串存储String
热点数据缓存
由于redis访问速度块、支持的数据类型比较丰富,所以redis很适合用来存储热点数据,另外结合expire,我们可以设置过期时间然后再进行缓存更新操作,这个功能最为常见,我们几乎所有的项目都有所运用。
a.单值缓存:
set key value ex time
get key
b.对象缓存
1.set user:1 value(json数据格式)
2.mset user:1:name laowang user:1:balance 8888
megt user:1:name user:1:balance
分布式锁
setnx product:1 true 返回1表示获取锁成功,返回0表示获取锁失败
del product:1 删除锁
set product:1 true ex 10 nx 防止程序意外终止导致死锁
计数,如:统计文章点击数
incr article:count:{id}
get article:count:{id}
Session共享
使用session作为key,用户信息作为value
分布式全局序列号
incrby key 1
2.哈希表存储Hash
对象属性操作
hset user username laowang
hset user balance 8001
hincrbyfloat user balance 22
购物车
添加购物车:
hset cart:1001 10089 1
hset cart:1001 10089 1
获取购物车
hgetall cart:1001
优缺点
优点:
1)同类数据归类整合存储,方便数据管理
2)相比string,消耗的资源更小
3)相比string,更节省空间
缺点:
1)过期功能不能使用在field上
2)redis分片集群下按key分片,不适合大规模适用
3.列表存储List
常用数据结构
stack(栈)=lpush+lpop-->filo
queue(队列)=lpush+rpop-->fifo
blocking queue(阻塞队列)=lpush=brpop
消息的时间轴显示
lpush msg:user-1001 msgid1
lpush msg:user-1001 msgid2
lrange msg:user-1001 0 5
4.集合Set
抽奖程序
sadd key {userId} --添加用户
smembers key --查看所有用户
srandmember key [count] --随机抽取count人,不从集合删除
spop key [count] --随机抽取count人,从集合删除
点赞、收藏、标签
sadd like:msgId {userId} --点赞
srem like:msgId {userId} --取消点赞
sismember like:msgId {userId} --检查用户是否点过赞
smembers like:msgId --获取点赞用户列表
scard like:msgId --获取点赞用户数
5.有序集合SortedSet
热点排行榜
zincrby hotNews:20201126 1 newsId --点击+1
zrevrank hotNews:20201126 0 9 withscores --获取排名前十的
zunionstore hotNews:20201120-20201126 7 hotNews:20201120 hotNews:20201121 ... hotNews:20201126 --7日新闻排行榜
zrevrank hotNews:20201120-20201126 0 9 withscores --暂时7日排行榜前十
6.位图Bitmap
签到功能
- 用户2月17号签到
SETBIT u:sign:1000:201902 16 1 # 偏移量是从0开始,所以要把17减1- 检查2月17号是否签到
GETBIT u:sign:1000:201902 16 # 偏移量是从0开始,所以要把17减1- 统计2月份的签到次数
BITCOUNT u:sign:1000:201902- 获取2月份前28天的签到数据
BITFIELD u:sign:1000:201902 get u28 0- 获取2月份首次签到的日期
BITPOS u:sign:1000:201902 1 # 返回的首次签到的偏移量,加上1即为当月的某一天