1 Star 0 Fork 0

kean/redis

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
cmd_rpop.go 633 Bytes
一键复制 编辑 原始数据 按行查看 历史
robinbraemer 提交于 2018-09-30 22:48 . add redis list type
package redis
import (
"fmt"
"github.com/redis-go/redcon"
)
func RPopCommand(c *Client, cmd redcon.Command) {
if len(cmd.Args) < 2 {
c.Conn().WriteError(fmt.Sprintf(WrongNumOfArgsErr, "rpop"))
return
}
key := string(cmd.Args[1])
db := c.Db()
i := db.GetOrExpire(&key, true)
if i == nil {
c.Conn().WriteNull()
return
} else if i.Type() != ListType {
c.Conn().WriteError(fmt.Sprintf("%s: key is a %s not a %s", WrongTypeErr, i.TypeFancy(), ListTypeFancy))
return
}
l := i.(*List)
c.Redis().Mu().Lock()
v, b := l.RPop()
if b {
db.Delete(&key)
}
c.Redis().Mu().Unlock()
c.Conn().WriteBulkString(*v)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kean123/redis.git
git@gitee.com:kean123/redis.git
kean123
redis
redis
master

搜索帮助