加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
rediskeyUtil.go 536 Bytes
一键复制 编辑 原始数据 按行查看 历史
mixinju 提交于 2022-05-29 13:52 . 优化代码结构
package utils
import "strconv"
// prefixFollowee 构造 redis key的前缀
const prefixFollowee = "followee"
// prefixFollower 构造 redis key的前缀
const prefixFollower = "follower"
// split 分隔符
const split = ":"
// GetFolloweeKey 用户关注对象的key
func GetFolloweeKey(userId int64) string {
return prefixFollowee + split + strconv.FormatInt(userId, 10)
}
// GetFollowerKey 对象拥有粉丝的key
func GetFollowerKey(toUserId int64) string {
return prefixFollower + split + strconv.FormatInt(toUserId, 10)
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化