optimize #78 change CacheIndex configure in conf.yaml to SimpleCacheIndex

pull/79/head
alimy 2 years ago
parent 3c3071791e
commit f24252d6ab

@ -16,7 +16,7 @@ Features:
Develop: ["Base", "Option", "Sms", "AliOSS", "LoggerZinc"] Develop: ["Base", "Option", "Sms", "AliOSS", "LoggerZinc"]
Slim: ["Base", "LocalOSS", "LoggerFile"] Slim: ["Base", "LocalOSS", "LoggerFile"]
Base: ["Zinc", "MySQL", "Redis", "Alipay",] Base: ["Zinc", "MySQL", "Redis", "Alipay",]
Option: ["CacheIndex"] Option: ["SimpleCacheIndex"]
Sms: "SmsJuhe" Sms: "SmsJuhe"
SmsJuhe: SmsJuhe:
Key: Key:
@ -25,7 +25,7 @@ SmsJuhe:
Alipay: Alipay:
AppID: AppID:
PrivateKey: PrivateKey:
CacheIndex: # 缓存泡泡广场消息流 SimpleCacheIndex: # 缓存泡泡广场消息流
MaxIndexSize: 200 # 最大缓存条数 MaxIndexSize: 200 # 最大缓存条数
CheckTickDuration: 60 # 循环自检查每多少秒一次 CheckTickDuration: 60 # 循环自检查每多少秒一次
ExpireTickDuration: 300 # 每多少秒后强制过期缓存 ExpireTickDuration: 300 # 每多少秒后强制过期缓存

@ -13,18 +13,18 @@ var (
redisSetting *RedisSettingS redisSetting *RedisSettingS
features *FeaturesSettingS features *FeaturesSettingS
ServerSetting *ServerSettingS ServerSetting *ServerSettingS
AppSetting *AppSettingS AppSetting *AppSettingS
CacheIndexSetting *CacheIndexSettingS SimpleCacheIndexSetting *SimpleCacheIndexSettingS
SmsJuheSetting *SmsJuheSettings SmsJuheSetting *SmsJuheSettings
AlipaySetting *AlipaySettingS AlipaySetting *AlipaySettingS
ZincSetting *ZincSettingS ZincSetting *ZincSettingS
AliOSSSetting *AliOSSSettingS AliOSSSetting *AliOSSSettingS
MinIOSetting *MinIOSettingS MinIOSetting *MinIOSettingS
S3Setting *S3SettingS S3Setting *S3SettingS
LocalOSSSetting *LocalOSSSettingS LocalOSSSetting *LocalOSSSettingS
JWTSetting *JWTSettingS JWTSetting *JWTSettingS
Mutex *sync.Mutex Mutex *sync.Mutex
) )
func setupSetting(suite []string, noDefault bool) error { func setupSetting(suite []string, noDefault bool) error {
@ -41,21 +41,21 @@ func setupSetting(suite []string, noDefault bool) error {
} }
objects := map[string]interface{}{ objects := map[string]interface{}{
"App": &AppSetting, "App": &AppSetting,
"Server": &ServerSetting, "Server": &ServerSetting,
"CacheIndex": &CacheIndexSetting, "SimpleCacheIndex": &SimpleCacheIndexSetting,
"Alipay": &AlipaySetting, "Alipay": &AlipaySetting,
"SmsJuhe": &SmsJuheSetting, "SmsJuhe": &SmsJuheSetting,
"LoggerFile": &loggerFileSetting, "LoggerFile": &loggerFileSetting,
"LoggerZinc": &loggerZincSetting, "LoggerZinc": &loggerZincSetting,
"MySQL": &mySQLSetting, "MySQL": &mySQLSetting,
"Zinc": &ZincSetting, "Zinc": &ZincSetting,
"Redis": &redisSetting, "Redis": &redisSetting,
"JWT": &JWTSetting, "JWT": &JWTSetting,
"AliOSS": &AliOSSSetting, "AliOSS": &AliOSSSetting,
"MinIO": &MinIOSetting, "MinIO": &MinIOSetting,
"LocalOSS": &LocalOSSSetting, "LocalOSS": &LocalOSSSetting,
"S3": &S3Setting, "S3": &S3Setting,
} }
if err = setting.Unmarshal(objects); err != nil { if err = setting.Unmarshal(objects); err != nil {
return err return err

@ -46,7 +46,7 @@ type AppSettingS struct {
TronApiKeys []string TronApiKeys []string
} }
type CacheIndexSettingS struct { type SimpleCacheIndexSettingS struct {
MaxIndexSize int MaxIndexSize int
CheckTickDuration int CheckTickDuration int
ExpireTickDuration int ExpireTickDuration int

@ -10,7 +10,7 @@ import (
) )
func newSimpleCacheIndexServant(getIndexPosts func(offset, limit int) ([]*model.PostFormated, error)) *simpleCacheIndexServant { func newSimpleCacheIndexServant(getIndexPosts func(offset, limit int) ([]*model.PostFormated, error)) *simpleCacheIndexServant {
s := conf.CacheIndexSetting s := conf.SimpleCacheIndexSetting
cacheIndex := &simpleCacheIndexServant{ cacheIndex := &simpleCacheIndexServant{
getIndexPosts: getIndexPosts, getIndexPosts: getIndexPosts,
maxIndexSize: s.MaxIndexSize, maxIndexSize: s.MaxIndexSize,

@ -71,11 +71,11 @@ func NewDataService(engine *gorm.DB, zinc *zinc.ZincClient) core.DataService {
} }
// initialize CacheIndex if needed // initialize CacheIndex if needed
if !conf.CfgIf("CacheIndex") { if conf.CfgIf("SimpleCacheIndex") {
ds.useCacheIndex = false
} else {
ds.useCacheIndex = true ds.useCacheIndex = true
ds.cacheIndex = newSimpleCacheIndexServant(ds.getIndexPosts) ds.cacheIndex = newSimpleCacheIndexServant(ds.getIndexPosts)
} else {
ds.useCacheIndex = false
} }
return ds return ds

Loading…
Cancel
Save