Redis实战场景
作者:互联网
String
- 单值缓存
set key value
get key
- 对象缓存
set user:{id}:name liuyiwen
set user:{id}:balance 6666
mset user:1:name liuyiwen user:1:balance 6666
mget user:1:name user:1:balance
- 分布式锁
setnx实现分布式锁(还记得上次分享的时候怎么实现的吗?)
- 计数
INCR articl:readcount:{文章id}
标签:实战,set,name,6666,Redis,场景,user,balance,id 来源: https://www.cnblogs.com/liuyiwen/p/14353054.html