You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
785 B
31 lines
785 B
package cachekey
|
|
|
|
const (
|
|
MallocSeq = "MALLOC_SEQ:"
|
|
MallocMinSeqLock = "MALLOC_MIN_SEQ:"
|
|
|
|
SeqUserMaxSeq = "SEQ_USER_MAX:"
|
|
SeqUserMinSeq = "SEQ_USER_MIN:"
|
|
SeqUserReadSeq = "SEQ_USER_READ:"
|
|
)
|
|
|
|
func GetMallocSeqKey(conversationID string) string {
|
|
return MallocSeq + conversationID
|
|
}
|
|
|
|
func GetMallocMinSeqKey(conversationID string) string {
|
|
return MallocMinSeqLock + conversationID
|
|
}
|
|
|
|
func GetSeqUserMaxSeqKey(conversationID string, userID string) string {
|
|
return SeqUserMaxSeq + conversationID + ":" + userID
|
|
}
|
|
|
|
func GetSeqUserMinSeqKey(conversationID string, userID string) string {
|
|
return SeqUserMinSeq + conversationID + ":" + userID
|
|
}
|
|
|
|
func GetSeqUserReadSeqKey(conversationID string, userID string) string {
|
|
return SeqUserReadSeq + conversationID + ":" + userID
|
|
}
|