1 Star 0 Fork 0

linxing/youye-core

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
cache.go 658 Bytes
一键复制 编辑 原始数据 按行查看 历史
Mark 提交于 2024-01-29 17:39 . rename package
package config
import (
"gitee.com/linxing_3/youye-core/storage"
"gitee.com/linxing_3/youye-core/storage/cache"
)
type Cache struct {
Redis *RedisConnectOptions
Memory interface{}
}
// CacheConfig cache配置
var CacheConfig = new(Cache)
// Setup 构造cache 顺序 redis > 其他 > memory
func (e Cache) Setup() (storage.AdapterCache, error) {
if e.Redis != nil {
options, err := e.Redis.GetRedisOptions()
if err != nil {
return nil, err
}
r, err := cache.NewRedis(GetRedisClient(), options)
if err != nil {
return nil, err
}
if _redis == nil {
_redis = r.GetClient()
}
return r, nil
}
return cache.NewMemory(), nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/linxing_3/youye-core.git
git@gitee.com:linxing_3/youye-core.git
linxing_3
youye-core
youye-core
v0.0.1-202404291754

搜索帮助