mirror of https://github.com/rocboss/paopao-ce
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.
36 lines
739 B
36 lines
739 B
// Copyright 2023 ROC. All rights reserved.
|
|
// Use of this source code is governed by a MIT style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package conf
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/alimy/tryst/cache"
|
|
)
|
|
|
|
const (
|
|
_defaultKeyPoolSize = 128
|
|
)
|
|
|
|
// 以下包含一些在cache中会用到的key的前缀
|
|
const (
|
|
PrefixUserTweets = "paopao:usertweets:"
|
|
)
|
|
|
|
// 以下包含一些在cache中会用到的池化后的key
|
|
var (
|
|
KeyUnreadMsg cache.KeyPool[int64]
|
|
)
|
|
|
|
func initCacheKeyPool() {
|
|
poolSize := _defaultKeyPoolSize
|
|
if poolSize < CacheSetting.KeyPoolSize {
|
|
poolSize = CacheSetting.KeyPoolSize
|
|
}
|
|
KeyUnreadMsg = cache.MustKeyPool[int64](poolSize, func(key int64) string {
|
|
return fmt.Sprintf("paopao:unreadmsg:%d", key)
|
|
})
|
|
}
|