redis/apply/cache.go

38 lines
641 B
Go
Raw Normal View History

2023-03-09 10:31:14 +08:00
// Package apply ...
//
// Description : apply ...
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 2023-02-13 11:24
package apply
import (
"git.zhangdeman.cn/zhangdeman/redis"
)
var (
// Cache 数据缓存的场景
Cache *cache
)
type cache struct {
}
// Set 设置缓存
//
// Author : go_developer@163.com<白茶清欢>
//
// Date : 11:28 2023/2/13
func (c *cache) Set(ctx *redis.Context, key string, value interface{}) error {
var (
err error
rc *redis.RealClient
)
2024-06-18 15:04:38 +08:00
if rc, err = redis.Client.GetRedisClientWithError(ctx.Flag); nil != err {
2023-03-09 10:31:14 +08:00
return err
}
return rc.Master.Set(nil, key, value, -1).Err()
}