2021-05-23 23:27:41 +00:00
|
|
|
|
package cache
|
|
|
|
|
|
|
|
|
|
import (
|
2022-03-12 17:12:29 +00:00
|
|
|
|
. "code.hoteas.com/golang/hotime/common"
|
2021-05-28 14:52:22 +00:00
|
|
|
|
"errors"
|
2021-05-23 23:27:41 +00:00
|
|
|
|
)
|
2021-05-23 21:47:56 +00:00
|
|
|
|
|
2021-05-28 14:52:22 +00:00
|
|
|
|
// HoTimeCache 可配置memory,db,redis,默认启用memory,默认优先级为memory>redis>db,memory与数据库缓存设置项一致,
|
|
|
|
|
//缓存数据填充会自动反方向反哺,加入memory缓存过期将自动从redis更新,但memory永远不会更新redis,如果是集群建议不要开启memory,配置即启用
|
2021-05-23 21:47:56 +00:00
|
|
|
|
type HoTimeCache struct {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
*Error
|
|
|
|
|
dbCache *CacheDb
|
|
|
|
|
redisCache *CacheRedis
|
|
|
|
|
memoryCache *CacheMemory
|
|
|
|
|
Config Map
|
2021-05-23 21:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 14:52:22 +00:00
|
|
|
|
func (that *HoTimeCache) Session(key string, data ...interface{}) *Obj {
|
|
|
|
|
var reData *Obj
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
|
//内存缓存有
|
|
|
|
|
if that.memoryCache != nil && that.memoryCache.SessionSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.memoryCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.redisCache != nil && that.redisCache.SessionSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.redisCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
if that.memoryCache != nil && that.memoryCache.SessionSet {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.memoryCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//db缓存有
|
|
|
|
|
if that.dbCache != nil && that.dbCache.SessionSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.dbCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
if that.memoryCache != nil && that.memoryCache.SessionSet {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.memoryCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
if that.redisCache != nil && that.redisCache.SessionSet {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.redisCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//设置缓存
|
|
|
|
|
//设置内存缓存
|
|
|
|
|
if that.memoryCache != nil && that.memoryCache.SessionSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.memoryCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.redisCache != nil && that.redisCache.SessionSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.redisCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.dbCache != nil && that.dbCache.SessionSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.dbCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
|
2021-05-23 21:47:56 +00:00
|
|
|
|
}
|
2021-05-28 14:52:22 +00:00
|
|
|
|
func (that *HoTimeCache) Db(key string, data ...interface{}) *Obj {
|
|
|
|
|
var reData *Obj
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
|
//内存缓存有
|
|
|
|
|
if that.memoryCache != nil && that.memoryCache.DbSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.memoryCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.redisCache != nil && that.redisCache.DbSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.redisCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
if that.memoryCache != nil && that.memoryCache.DbSet {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.memoryCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.dbCache != nil && that.dbCache.DbSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.dbCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
if that.memoryCache != nil && that.memoryCache.DbSet {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.memoryCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if that.redisCache != nil && that.redisCache.DbSet {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.redisCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//设置缓存
|
|
|
|
|
//设置内存缓存
|
|
|
|
|
if that.memoryCache != nil && that.memoryCache.DbSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.memoryCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.redisCache != nil && that.redisCache.DbSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.redisCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.dbCache != nil && that.dbCache.DbSet {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.dbCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
2021-05-23 21:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 14:52:22 +00:00
|
|
|
|
func (that *HoTimeCache) Cache(key string, data ...interface{}) *Obj {
|
|
|
|
|
var reData *Obj
|
|
|
|
|
if len(data) == 0 {
|
|
|
|
|
//内存缓存有
|
|
|
|
|
if that.memoryCache != nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.memoryCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
if reData != nil {
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.redisCache != nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.redisCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
|
|
|
|
|
if that.memoryCache != nil {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.memoryCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.dbCache != nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.dbCache.Cache(key, data...)
|
2021-09-15 20:33:10 +00:00
|
|
|
|
if reData.Data != nil {
|
2021-05-28 14:52:22 +00:00
|
|
|
|
if that.memoryCache != nil {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.memoryCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
if that.redisCache != nil {
|
2021-09-15 20:33:10 +00:00
|
|
|
|
that.redisCache.Cache(key, reData.Data)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return reData
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//设置缓存
|
|
|
|
|
//设置内存缓存
|
|
|
|
|
if that.memoryCache != nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.memoryCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.redisCache != nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.redisCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
//redis缓存有
|
|
|
|
|
if that.dbCache != nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
reData = that.dbCache.Cache(key, data...)
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
return reData
|
2021-05-23 21:47:56 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-28 14:52:22 +00:00
|
|
|
|
func (that *HoTimeCache) Init(config Map, hotimeDb HoTimeDBInterface, err ...*Error) {
|
|
|
|
|
//防止空数据问题
|
|
|
|
|
if config == nil {
|
|
|
|
|
config = Map{}
|
|
|
|
|
}
|
|
|
|
|
if err[0] != nil {
|
|
|
|
|
that.Error = err[0]
|
|
|
|
|
}
|
|
|
|
|
that.Config = config
|
|
|
|
|
//memory配置初始化
|
|
|
|
|
memory := that.Config.GetMap("memory")
|
|
|
|
|
if memory == nil {
|
|
|
|
|
memory = Map{
|
|
|
|
|
"db": true,
|
|
|
|
|
"session": true,
|
|
|
|
|
"sort": 0,
|
|
|
|
|
"timeout": 60 * 60 * 2,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
if memory.Get("db") == nil {
|
|
|
|
|
memory["db"] = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if memory.Get("session") == nil {
|
|
|
|
|
memory["session"] = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if memory.Get("timeout") == nil {
|
|
|
|
|
memory["timeout"] = 60 * 60 * 2
|
|
|
|
|
}
|
|
|
|
|
that.Config["memory"] = memory
|
|
|
|
|
that.memoryCache = &CacheMemory{TimeOut: memory.GetCeilInt64("timeout"),
|
|
|
|
|
DbSet: memory.GetBool("db"), SessionSet: memory.GetBool("session")}
|
|
|
|
|
if err[0] != nil {
|
|
|
|
|
that.memoryCache.SetError(err[0])
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//db配置初始化
|
|
|
|
|
redis := that.Config.GetMap("redis")
|
|
|
|
|
if redis != nil {
|
|
|
|
|
if redis.GetString("host") == "" || redis.GetString("port") == "" {
|
|
|
|
|
if err[0] != nil {
|
|
|
|
|
err[0].SetError(errors.New("请检查redis配置host和port配置"))
|
|
|
|
|
}
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
if redis.Get("db") == nil {
|
|
|
|
|
redis["db"] = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if redis.Get("session") == nil {
|
|
|
|
|
redis["session"] = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if redis.Get("timeout") == nil {
|
2021-05-28 15:48:33 +00:00
|
|
|
|
redis["timeout"] = 60 * 60 * 24 * 15
|
2021-05-28 14:52:22 +00:00
|
|
|
|
}
|
|
|
|
|
that.Config["redis"] = redis
|
|
|
|
|
that.redisCache = &CacheRedis{TimeOut: redis.GetCeilInt64("timeout"),
|
|
|
|
|
DbSet: redis.GetBool("db"), SessionSet: redis.GetBool("session"), Host: redis.GetString("host"),
|
|
|
|
|
Pwd: redis.GetString("password"), Port: redis.GetCeilInt64("port")}
|
|
|
|
|
|
|
|
|
|
if err[0] != nil {
|
|
|
|
|
that.redisCache.SetError(err[0])
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//db配置初始化
|
|
|
|
|
db := that.Config.GetMap("db")
|
|
|
|
|
if db != nil {
|
|
|
|
|
|
|
|
|
|
if db.Get("db") == nil {
|
|
|
|
|
db["db"] = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if db.Get("session") == nil {
|
|
|
|
|
db["session"] = true
|
|
|
|
|
}
|
|
|
|
|
if db.Get("timeout") == nil {
|
|
|
|
|
db["timeout"] = 60 * 60 * 24 * 30
|
|
|
|
|
}
|
|
|
|
|
that.Config["db"] = db
|
|
|
|
|
|
|
|
|
|
that.dbCache = &CacheDb{TimeOut: db.GetCeilInt64("timeout"),
|
|
|
|
|
DbSet: db.GetBool("db"), SessionSet: db.GetBool("session"),
|
|
|
|
|
Db: hotimeDb}
|
|
|
|
|
|
|
|
|
|
if err[0] != nil {
|
|
|
|
|
that.dbCache.SetError(err[0])
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-05-23 21:47:56 +00:00
|
|
|
|
|
|
|
|
|
}
|