数据库
首页 > 数据库> > Redis实战场景

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