2023-04-06 08:57:14 +00:00
|
|
|
package cache
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
|
|
|
"fmt"
|
2023-04-27 02:46:02 +00:00
|
|
|
"reflect"
|
2023-09-07 03:52:20 +00:00
|
|
|
"sync"
|
2023-04-06 08:57:14 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gomodule/redigo/redis"
|
2023-04-06 10:41:54 +00:00
|
|
|
"qoobing.com/gomod/log"
|
2023-04-06 08:57:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2023-04-27 02:46:02 +00:00
|
|
|
ErrExpired = errors.New("expired")
|
2023-04-10 03:47:31 +00:00
|
|
|
ErrNotFound = errors.New("not found")
|
|
|
|
OptWithoutGetter = optWithoutGetter{} // for get only
|
|
|
|
OptWithCreateTime = optWithCreateTime{} // for set & get
|
2023-04-13 04:34:16 +00:00
|
|
|
OptWithRedisConn = optWithRedisConn{} // for set & get
|
2023-04-06 08:57:14 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Cacher[T any] interface {
|
2023-04-10 03:47:31 +00:00
|
|
|
GetFromCache(id string, options ...Option) (dat *T, err error)
|
|
|
|
SetIntoCache(id string, dat *T, options ...Option) (err error)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type Getter[T any] interface {
|
|
|
|
GetById(id string) (dat *T, err error)
|
|
|
|
}
|
|
|
|
|
2023-04-27 02:46:02 +00:00
|
|
|
type cacher[T any] struct {
|
|
|
|
cfg Config
|
|
|
|
getter Getter[T]
|
|
|
|
localCache *localCacher[T]
|
|
|
|
redisCache *redisCacher[T]
|
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
type (
|
|
|
|
Option any
|
|
|
|
optWithoutGetter struct{} // for get only
|
2023-04-13 01:53:30 +00:00
|
|
|
optWithRedisConn struct{ redisconn redis.Conn } // for set & get
|
2023-04-10 03:47:31 +00:00
|
|
|
optWithCreateTime struct{ createtime *time.Time } // for set & get
|
|
|
|
Options struct {
|
|
|
|
withoutGetter *optWithoutGetter
|
|
|
|
withCreateTime *optWithCreateTime
|
2023-04-13 01:53:30 +00:00
|
|
|
withRedisConn *optWithRedisConn
|
2023-04-10 03:47:31 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2023-04-13 01:53:30 +00:00
|
|
|
type Config struct {
|
|
|
|
UseLocalCache bool // use localcache or not
|
|
|
|
LocalCacheLifetimeSecond int64 // local cache lifetime(t<0: forever; t=0: default; t>0: seconds)
|
|
|
|
UseRedisCache bool // use redis or not
|
2023-04-27 02:46:02 +00:00
|
|
|
RedisCacheConn redis.Conn `json:"-"` // redis.Conn
|
|
|
|
RedisCacheConnPool *redis.Pool `json:"-"` // redis.Pool
|
2023-04-13 01:53:30 +00:00
|
|
|
RedisCacheKeyPrefix string // redis key prefix
|
|
|
|
RedisCacheLifetimeSecond int64 // redis cache lifetime(t<0: forever; t=0: default; t>0: seconds)
|
|
|
|
UseGetter bool // not used
|
|
|
|
GetterNoWarning bool // no warning if no getter
|
2023-04-27 02:46:02 +00:00
|
|
|
UseExpiredCache *bool // use expired cache or not (true: &[]bool{true}[0], false: &[]bool{true}[0])
|
2023-04-13 01:53:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCache[T any](getter Getter[T], cfg Config) Cacher[T] {
|
|
|
|
var c = new(cacher[T])
|
|
|
|
// Getter
|
|
|
|
c.getter = getter
|
|
|
|
|
|
|
|
// Local cache
|
|
|
|
if cfg.UseLocalCache {
|
|
|
|
c.localCache = new(localCacher[T])
|
2023-04-27 02:46:02 +00:00
|
|
|
c.localCache.cacher = c
|
2023-09-07 03:52:20 +00:00
|
|
|
c.localCache.cacheItems = sync.Map{} //map[string]*cacheItem[T]{}
|
2023-04-13 01:53:30 +00:00
|
|
|
c.localCache.cacheDuration = time.Duration(cfg.LocalCacheLifetimeSecond) * time.Second
|
|
|
|
if c.localCache.cacheDuration.Nanoseconds() == 0 {
|
|
|
|
c.localCache.cacheDuration = 60 * time.Second
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Redis cache
|
|
|
|
if cfg.UseRedisCache && (cfg.RedisCacheConn != nil || cfg.RedisCacheConnPool != nil) {
|
|
|
|
if cfg.RedisCacheKeyPrefix == "" {
|
|
|
|
panic("redis cache's key prefix must not be null")
|
|
|
|
}
|
|
|
|
c.redisCache = new(redisCacher[T])
|
2023-04-27 02:46:02 +00:00
|
|
|
c.redisCache.cacher = c
|
2023-04-13 01:53:30 +00:00
|
|
|
c.redisCache.rds = cfg.RedisCacheConn
|
|
|
|
c.redisCache.rdsPool = cfg.RedisCacheConnPool
|
|
|
|
c.redisCache.cacheDuration = time.Duration(cfg.RedisCacheLifetimeSecond) * time.Second
|
|
|
|
c.redisCache.cachePrefix = fmt.Sprintf("%s-cache-id:", cfg.RedisCacheKeyPrefix)
|
|
|
|
if c.redisCache.cacheDuration.Nanoseconds() == 0 {
|
|
|
|
c.redisCache.cacheDuration = 180 * time.Second
|
|
|
|
}
|
|
|
|
} else if cfg.UseRedisCache {
|
|
|
|
panic("want to user redis cache, but redis.Conn is nil")
|
|
|
|
}
|
|
|
|
|
2023-04-27 02:46:02 +00:00
|
|
|
//UseExpiredCache
|
|
|
|
if cfg.UseExpiredCache == nil {
|
|
|
|
cfg.UseExpiredCache = &[]bool{true}[0]
|
|
|
|
}
|
|
|
|
|
2023-04-28 01:00:12 +00:00
|
|
|
c.cfg = cfg
|
2023-04-27 02:46:02 +00:00
|
|
|
name := reflect.TypeOf(*new(T)).String()
|
|
|
|
log.PrintPretty("new cache '"+name+"' by config:", cfg)
|
2023-04-13 01:53:30 +00:00
|
|
|
return c
|
|
|
|
}
|
|
|
|
|
|
|
|
func optionParser(options ...Option) (opts Options) {
|
2023-04-10 03:47:31 +00:00
|
|
|
var l = len(options)
|
|
|
|
if l == 0 {
|
2023-04-13 01:53:30 +00:00
|
|
|
return opts
|
2023-04-10 03:47:31 +00:00
|
|
|
}
|
|
|
|
//TODO: add i out of range & options[i] type mismatch panic recover
|
|
|
|
for i := 0; i < l; i++ {
|
|
|
|
o := options[i]
|
|
|
|
switch o.(type) {
|
|
|
|
case optWithoutGetter:
|
|
|
|
opts.withoutGetter = new(optWithoutGetter)
|
|
|
|
case optWithCreateTime:
|
|
|
|
opts.withCreateTime = new(optWithCreateTime)
|
|
|
|
i++
|
|
|
|
opts.withCreateTime.createtime = options[i].(*time.Time)
|
2023-04-13 01:53:30 +00:00
|
|
|
case optWithRedisConn:
|
|
|
|
opts.withRedisConn = new(optWithRedisConn)
|
|
|
|
i++
|
|
|
|
opts.withRedisConn.redisconn = options[i].(redis.Conn)
|
2023-04-10 03:47:31 +00:00
|
|
|
default:
|
|
|
|
panic("unreachable code, maybe miss some code modification")
|
|
|
|
}
|
|
|
|
}
|
2023-04-13 01:53:30 +00:00
|
|
|
return opts
|
2023-04-10 03:47:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func isOptWithCreateTimeForSetter(opts Options) bool {
|
|
|
|
if opts.withCreateTime == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
var createtime = opts.withCreateTime.createtime
|
|
|
|
if createtime == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return !createtime.IsZero()
|
|
|
|
}
|
|
|
|
|
|
|
|
func isOptWithCreateTimeForGetter(opts Options) bool {
|
|
|
|
if opts.withCreateTime == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
var createtime = opts.withCreateTime.createtime
|
|
|
|
if createtime == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return createtime.IsZero()
|
|
|
|
}
|
|
|
|
|
2023-04-06 08:57:14 +00:00
|
|
|
type cacheItem[T any] struct {
|
2023-04-06 10:41:54 +00:00
|
|
|
Data *T `json:"d"` //cache data
|
|
|
|
CreateTime time.Time `json:"t"` //cache create time
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type localCacher[T any] struct {
|
2023-09-07 03:52:20 +00:00
|
|
|
cacher *cacher[T] // parents cacher pointer
|
|
|
|
cacheItems sync.Map // map[string]*cacheItem[T]
|
|
|
|
cacheDuration time.Duration // cache alive duration
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
2023-04-06 10:41:54 +00:00
|
|
|
type redisCacher[T any] struct {
|
2023-04-27 02:46:02 +00:00
|
|
|
cacher *cacher[T]
|
2023-04-10 03:47:31 +00:00
|
|
|
cachePrefix string
|
|
|
|
cacheDuration time.Duration
|
2023-04-27 02:46:02 +00:00
|
|
|
rds redis.Conn
|
|
|
|
rdsPool *redis.Pool
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
func (c *localCacher[T]) GetFromCache(id string, options ...Option) (t *T, err error) {
|
2023-04-27 02:46:02 +00:00
|
|
|
// Step 1. get from map
|
2023-09-07 03:52:20 +00:00
|
|
|
var a *cacheItem[T] = nil
|
|
|
|
if aa, ok := c.cacheItems.Load(id); !ok {
|
2023-04-06 10:41:54 +00:00
|
|
|
return nil, ErrNotFound
|
2023-09-07 03:52:20 +00:00
|
|
|
} else if a, ok = aa.(*cacheItem[T]); !ok {
|
|
|
|
panic("unreachable code, inner item type must be '*cacheItem[T]'")
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
2023-04-10 03:47:31 +00:00
|
|
|
|
2023-04-27 02:46:02 +00:00
|
|
|
// Step 2. check is expired or not
|
2023-04-10 03:47:31 +00:00
|
|
|
if c.cacheDuration.Nanoseconds() > 0 {
|
|
|
|
var earliestCreateTime = time.Now().Add(-c.cacheDuration)
|
|
|
|
if a.CreateTime.Before(earliestCreateTime) {
|
2023-04-27 02:46:02 +00:00
|
|
|
if *c.cacher.cfg.UseExpiredCache {
|
|
|
|
log.Infof("cache(%s) in local is expired, "+
|
|
|
|
"we will use it when all other caches are missing", id)
|
|
|
|
err = ErrExpired
|
|
|
|
} else {
|
|
|
|
log.Infof("cache(%s) is in local cache but expired, we delete it", id)
|
2023-09-07 03:52:20 +00:00
|
|
|
c.cacheItems.Delete(id)
|
2023-04-27 02:46:02 +00:00
|
|
|
return nil, ErrNotFound
|
|
|
|
}
|
2023-04-10 03:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-27 02:46:02 +00:00
|
|
|
// Step 3. get cache creattime if need
|
2023-04-13 01:53:30 +00:00
|
|
|
var opt = optionParser(options...)
|
|
|
|
if isOptWithCreateTimeForGetter(opt) {
|
2023-04-10 03:47:31 +00:00
|
|
|
*opt.withCreateTime.createtime = a.CreateTime
|
|
|
|
}
|
|
|
|
|
2023-04-27 02:46:02 +00:00
|
|
|
// Step 4. return
|
|
|
|
if err == ErrExpired {
|
|
|
|
return a.Data, ErrExpired
|
|
|
|
} else if err != nil {
|
2023-09-07 03:52:20 +00:00
|
|
|
panic("unreachable code: only ErrExpired error valid when data exist")
|
2023-04-27 02:46:02 +00:00
|
|
|
}
|
2023-04-10 03:47:31 +00:00
|
|
|
return a.Data, nil
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
func (c *localCacher[T]) SetIntoCache(id string, t *T, options ...Option) (err error) {
|
2023-04-13 01:53:30 +00:00
|
|
|
var opt = optionParser(options...)
|
2023-04-10 03:47:31 +00:00
|
|
|
var newitem = &cacheItem[T]{Data: t}
|
2023-04-13 01:53:30 +00:00
|
|
|
if isOptWithCreateTimeForSetter(opt) {
|
2023-04-10 03:47:31 +00:00
|
|
|
newitem.CreateTime = *opt.withCreateTime.createtime
|
|
|
|
} else {
|
|
|
|
newitem.CreateTime = time.Now()
|
2023-04-06 10:41:54 +00:00
|
|
|
}
|
2023-09-07 03:52:20 +00:00
|
|
|
c.cacheItems.Store(id, newitem)
|
2023-04-06 08:57:14 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
func (c *redisCacher[T]) GetFromCache(id string, options ...Option) (*T, error) {
|
2023-04-06 08:57:14 +00:00
|
|
|
var (
|
2023-04-13 01:53:30 +00:00
|
|
|
err error = nil
|
|
|
|
rds redis.Conn = nil
|
|
|
|
opt = optionParser(options...)
|
|
|
|
redisKey = c.cachePrefix + id
|
|
|
|
redisValue = ""
|
2023-04-06 08:57:14 +00:00
|
|
|
)
|
2023-04-13 01:53:30 +00:00
|
|
|
if opt.withRedisConn != nil && opt.withRedisConn.redisconn != nil {
|
|
|
|
rds = opt.withRedisConn.redisconn
|
|
|
|
} else if c.rdsPool != nil {
|
|
|
|
rds = c.rdsPool.Get()
|
|
|
|
defer rds.Close()
|
|
|
|
} else if c.rds != nil {
|
|
|
|
rds = c.rds
|
|
|
|
}
|
2023-04-06 08:57:14 +00:00
|
|
|
|
|
|
|
// Step 1. read from redis
|
|
|
|
if redisValue, err = redis.String(rds.Do("GET", redisKey)); err != nil {
|
2023-04-06 10:41:54 +00:00
|
|
|
log.Infof("get cache failed: 'redis return<%s>'", err.Error())
|
|
|
|
return nil, ErrNotFound
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Step 2. decode from string
|
2023-04-06 10:41:54 +00:00
|
|
|
a := &cacheItem[T]{}
|
2023-04-06 08:57:14 +00:00
|
|
|
if err = json.Unmarshal([]byte(redisValue), a); err != nil {
|
2023-04-06 10:41:54 +00:00
|
|
|
log.Errorf("get cache failed: 'json unmarshal failed <%s>'", err.Error())
|
|
|
|
return nil, ErrNotFound
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Step 3. check expire time
|
2023-04-10 03:47:31 +00:00
|
|
|
if c.cacheDuration.Nanoseconds() > 0 {
|
|
|
|
var earliestCreateTime = time.Now().Add(-c.cacheDuration)
|
2023-04-06 08:57:14 +00:00
|
|
|
if a.CreateTime.Before(earliestCreateTime) {
|
2023-04-27 02:46:02 +00:00
|
|
|
if *c.cacher.cfg.UseExpiredCache {
|
|
|
|
log.Infof("cache(%s) in redis is expired, "+
|
|
|
|
"we will use it when all other caches are missing", id)
|
|
|
|
err = ErrExpired
|
|
|
|
} else {
|
|
|
|
log.Infof("app(%s) is in redis cache but expired", id)
|
|
|
|
return nil, ErrNotFound
|
|
|
|
}
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
// Step 4. get cache creattime if need
|
2023-04-13 01:53:30 +00:00
|
|
|
if isOptWithCreateTimeForGetter(opt) {
|
2023-04-10 03:47:31 +00:00
|
|
|
*opt.withCreateTime.createtime = a.CreateTime
|
|
|
|
}
|
|
|
|
|
2023-04-27 02:46:02 +00:00
|
|
|
// Step 5. return
|
|
|
|
if err == ErrExpired {
|
|
|
|
return a.Data, ErrExpired
|
|
|
|
} else if err != nil {
|
|
|
|
panic("unreachable code")
|
|
|
|
}
|
2023-04-06 10:41:54 +00:00
|
|
|
return a.Data, nil
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
func (c *redisCacher[T]) SetIntoCache(id string, t *T, options ...Option) error {
|
2023-04-06 08:57:14 +00:00
|
|
|
var (
|
2023-04-13 01:53:30 +00:00
|
|
|
opt = optionParser(options...)
|
|
|
|
rds redis.Conn = nil
|
|
|
|
redisKey = c.cachePrefix + id
|
|
|
|
redisValue = []byte{}
|
|
|
|
err error = nil
|
2023-04-06 08:57:14 +00:00
|
|
|
)
|
2023-04-13 01:53:30 +00:00
|
|
|
// Step 0. redis.Conn
|
|
|
|
if opt.withRedisConn != nil && opt.withRedisConn.redisconn != nil {
|
|
|
|
rds = opt.withRedisConn.redisconn
|
|
|
|
} else if c.rdsPool != nil {
|
|
|
|
rds = c.rdsPool.Get()
|
|
|
|
defer rds.Close()
|
|
|
|
} else if c.rds != nil {
|
|
|
|
rds = c.rds
|
|
|
|
}
|
2023-04-06 08:57:14 +00:00
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
// Step 1. encode to string
|
|
|
|
var a = cacheItem[T]{Data: t}
|
2023-04-13 01:53:30 +00:00
|
|
|
if isOptWithCreateTimeForSetter(opt) {
|
2023-04-10 03:47:31 +00:00
|
|
|
a.CreateTime = *opt.withCreateTime.createtime
|
|
|
|
} else {
|
|
|
|
a.CreateTime = time.Now()
|
|
|
|
}
|
2023-04-06 08:57:14 +00:00
|
|
|
if redisValue, err = json.Marshal(a); err != nil {
|
2023-04-06 10:41:54 +00:00
|
|
|
log.Errorf("set cache failed: 'json marshal failed <%s>'", err.Error())
|
|
|
|
return errors.New("set cache failed: 'marshal failed'")
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
// Step 2. write into redis
|
2023-04-06 08:57:14 +00:00
|
|
|
if _, err = rds.Do("SET", redisKey, string(redisValue)); err != nil {
|
2023-04-06 10:41:54 +00:00
|
|
|
log.Errorf("set cache failed: 'redis failed <%s>'", err.Error())
|
|
|
|
return errors.New("set cache failed: 'redis failed'")
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
func (c *cacher[T]) GetFromCache(id string, options ...Option) (dat *T, err error) {
|
2023-04-06 08:57:14 +00:00
|
|
|
// Step 1. check id
|
2023-04-10 03:47:31 +00:00
|
|
|
if len(id) < 1 {
|
2023-04-06 08:57:14 +00:00
|
|
|
return nil, ErrNotFound
|
|
|
|
}
|
|
|
|
|
2023-04-13 01:53:30 +00:00
|
|
|
var opt = optionParser(options...)
|
2023-04-27 02:46:02 +00:00
|
|
|
var lastExpiredDat *T = nil
|
2023-04-06 08:57:14 +00:00
|
|
|
// Step 2. get from [local]
|
|
|
|
if c.localCache != nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
if dat, err := c.localCache.GetFromCache(id, options...); err == nil {
|
2023-04-06 08:57:14 +00:00
|
|
|
log.Infof("get cache(id:%s) from localCacher success", id)
|
|
|
|
return dat, nil
|
2023-04-27 02:46:02 +00:00
|
|
|
} else if err == ErrExpired {
|
|
|
|
log.Infof("get cache(id:%s) from localCacher success(but expired), need try next", id)
|
|
|
|
lastExpiredDat = dat
|
|
|
|
} else {
|
|
|
|
log.Infof("get cache(id:%s) from localCacher failed, need try next", id)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Step 3. get from [redis]
|
|
|
|
if c.redisCache != nil {
|
2023-04-13 03:39:26 +00:00
|
|
|
//if opt.withCreateTime == nil { //get create time from redis
|
|
|
|
// options = append(options, OptWithCreateTime, new(time.Time))
|
|
|
|
//}
|
2023-04-10 03:47:31 +00:00
|
|
|
if dat, err := c.redisCache.GetFromCache(id, options...); err == nil {
|
2023-04-06 10:41:54 +00:00
|
|
|
if c.localCache != nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
c.localCache.SetIntoCache(id, dat, options...) //set create time from redis
|
|
|
|
log.Infof("set cache(id:%s) to localCache by redisCacher done", id)
|
2023-04-06 10:41:54 +00:00
|
|
|
}
|
2023-04-06 08:57:14 +00:00
|
|
|
log.Infof("get cache(id:%s) from redisCacher success", id)
|
|
|
|
return dat, nil
|
2023-04-27 02:46:02 +00:00
|
|
|
} else if err == ErrExpired {
|
|
|
|
if c.localCache != nil {
|
|
|
|
c.localCache.SetIntoCache(id, dat, options...) //set create time from redis
|
|
|
|
log.Infof("set cache(id:%s) to localCache by redisCacher done", id)
|
|
|
|
}
|
|
|
|
log.Infof("get cache(id:%s) from redisCacher success(but expired), need try next", id)
|
|
|
|
lastExpiredDat = dat
|
|
|
|
} else {
|
|
|
|
log.Infof("get cache(id:%s) from redisCacher failed, need try next", id)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
2023-04-10 03:47:31 +00:00
|
|
|
|
|
|
|
var getter = c.getter
|
|
|
|
if opt.withoutGetter != nil {
|
2023-04-27 02:46:02 +00:00
|
|
|
log.Infof("all cache failed, and option 'withoutgetter' is set, return ErrNotFound")
|
2023-04-10 03:47:31 +00:00
|
|
|
return nil, ErrNotFound
|
|
|
|
}
|
2023-04-27 02:46:02 +00:00
|
|
|
|
|
|
|
if getter == nil && lastExpiredDat != nil {
|
|
|
|
log.Infof("all cache failed(and getter is nil) but expired cache is avaliable, we use it")
|
|
|
|
return lastExpiredDat, nil
|
|
|
|
} else if getter == nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
log.Infof("all cache failed, and getter is nil, return ErrNotFound")
|
|
|
|
if c.cfg.GetterNoWarning == false {
|
|
|
|
log.Warningf("cache 'getter' is nil, did you save right config in database?")
|
|
|
|
}
|
2023-04-06 10:41:54 +00:00
|
|
|
return nil, ErrNotFound
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Step 4. get from [storager(database or somewhere)]
|
2023-04-10 03:47:31 +00:00
|
|
|
dat, err = getter.GetById(id)
|
2023-04-27 02:46:02 +00:00
|
|
|
if err != nil && lastExpiredDat != nil {
|
|
|
|
log.Infof("all cache failed and getter failed, expired cache is avaliable, we will use it")
|
|
|
|
return lastExpiredDat, nil
|
|
|
|
} else if err != nil {
|
2023-04-06 08:57:14 +00:00
|
|
|
log.Errorf("cache(id:%s) is not in database, something error: %s", id, err)
|
2023-04-06 10:41:54 +00:00
|
|
|
return nil, ErrNotFound
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
log.Infof("get cache(id:%s) from exportStorager(maybe database) success", id)
|
|
|
|
|
|
|
|
// Step 5. set to cacha
|
|
|
|
if c.localCache != nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
c.localCache.SetIntoCache(id, dat, options...)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
if c.redisCache != nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
c.redisCache.SetIntoCache(id, dat, options...)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Step 6. return
|
|
|
|
log.PrintPretty("success cached/return app:", dat)
|
|
|
|
return dat, nil
|
|
|
|
}
|
|
|
|
|
2023-04-10 03:47:31 +00:00
|
|
|
func (c *cacher[T]) SetIntoCache(id string, dat *T, options ...Option) (err error) {
|
2023-04-06 08:57:14 +00:00
|
|
|
// localCache
|
|
|
|
if c.localCache != nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
if err = c.localCache.SetIntoCache(id, dat, options...); err != nil {
|
2023-04-06 08:57:14 +00:00
|
|
|
log.Infof("set data into localCache failed, err:%s", err)
|
2023-04-06 10:41:54 +00:00
|
|
|
} else {
|
|
|
|
log.Debugf("success set data into localCache, id: %s", id)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// redisCache
|
|
|
|
if c.redisCache != nil {
|
2023-04-10 03:47:31 +00:00
|
|
|
if err = c.redisCache.SetIntoCache(id, dat, options...); err != nil {
|
2023-04-06 08:57:14 +00:00
|
|
|
log.Infof("set data into redisCache failed, err:%s", err)
|
2023-04-06 10:41:54 +00:00
|
|
|
} else {
|
|
|
|
log.Debugf("success set data into redisCache, id: %s", id)
|
2023-04-06 08:57:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|