mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
* feat: msg local cache * feat: msg local cache * feat: msg local cache * feat: msg local cache * feat: msg local cache * feat: msg local cache * fix: mongo * fix: mongo * fix: mongo * openim.yaml * localcache * localcache * localcache * localcache * localcache * localcache * localcache * localcache * localcache * local cache * local cache * local cache * local cache * fix: GroupApplicationAcceptedNotification * fix: GroupApplicationAcceptedNotification * fix: NotificationUserInfoUpdate * feat: cache add single-flight and timing-wheel. * feat: local cache * feat: local cache * feat: local cache * feat: cache add single-flight and timing-wheel. * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: local cache * feat: msg rpc local cache * feat: msg rpc local cache * feat: msg rpc local cache * feat: msg rpc local cache * feat: msg rpc local cache * feat: msg rpc local cache * refactor: refactor the code of push and optimization. * cicd: robot automated Change * refactor: rename cache. * merge * fix: refactor project dir avoid import cycle. * update tools * merge * feat: conversation FindRecvMsgNotNotifyUserIDs * feat: conversation FindRecvMsgNotNotifyUserIDs * feat: conversation FindRecvMsgNotNotifyUserIDs * merge * merge the latest main --------- Co-authored-by: Gordon <46924906+FGadvancer@users.noreply.github.com> Co-authored-by: withchao <withchao@users.noreply.github.com>
46 lines
1.2 KiB
Go
46 lines
1.2 KiB
Go
package cachekey
|
|
|
|
import (
|
|
"strconv"
|
|
"time"
|
|
)
|
|
|
|
const (
|
|
groupExpireTime = time.Second * 60 * 60 * 12
|
|
GroupInfoKey = "GROUP_INFO:"
|
|
GroupMemberIDsKey = "GROUP_MEMBER_IDS:"
|
|
GroupMembersHashKey = "GROUP_MEMBERS_HASH2:"
|
|
GroupMemberInfoKey = "GROUP_MEMBER_INFO:"
|
|
JoinedGroupsKey = "JOIN_GROUPS_KEY:"
|
|
GroupMemberNumKey = "GROUP_MEMBER_NUM_CACHE:"
|
|
GroupRoleLevelMemberIDsKey = "GROUP_ROLE_LEVEL_MEMBER_IDS:"
|
|
)
|
|
|
|
func GetGroupInfoKey(groupID string) string {
|
|
return GroupInfoKey + groupID
|
|
}
|
|
|
|
func GetJoinedGroupsKey(userID string) string {
|
|
return JoinedGroupsKey + userID
|
|
}
|
|
|
|
func GetGroupMembersHashKey(groupID string) string {
|
|
return GroupMembersHashKey + groupID
|
|
}
|
|
|
|
func GetGroupMemberIDsKey(groupID string) string {
|
|
return GroupMemberIDsKey + groupID
|
|
}
|
|
|
|
func GetGroupMemberInfoKey(groupID, userID string) string {
|
|
return GroupMemberInfoKey + groupID + "-" + userID
|
|
}
|
|
|
|
func GetGroupMemberNumKey(groupID string) string {
|
|
return GroupMemberNumKey + groupID
|
|
}
|
|
|
|
func GetGroupRoleLevelMemberIDsKey(groupID string, roleLevel int32) string {
|
|
return GroupRoleLevelMemberIDsKey + groupID + "-" + strconv.Itoa(int(roleLevel))
|
|
}
|