-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcacheInRedis.go
206 lines (173 loc) · 5.06 KB
/
cacheInRedis.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
package redis
import (
"reflect"
"time"
"github.com/farseer-go/cache"
"github.com/farseer-go/cache/eumExpiryType"
"github.com/farseer-go/collections"
"github.com/farseer-go/fs/container"
"github.com/farseer-go/fs/flog"
"github.com/farseer-go/fs/parse"
"github.com/farseer-go/fs/snc"
)
// 二级缓存-本地缓存操作
type cacheInRedis struct {
expiry time.Duration // 设置Memory缓存过期时间
expiryType eumExpiryType.Enum // 过期策略
uniqueField string // hash中的主键(唯一ID的字段名称)
itemType reflect.Type // itemType
key string // 缓存KEY
lastVisitAt time.Time // 最后一次访问时间
unSetTTl bool // 绝对时间策略时,标记是否设置过过期时间
redisClient IClient // redis client
}
// 创建实例
func newCache(key string, uniqueField string, itemType reflect.Type, redisConfigName string, ops ...cache.Option) cache.ICache {
op := &cache.Op{}
for _, option := range ops {
option(op)
}
r := &cacheInRedis{
expiry: op.Expiry,
expiryType: op.ExpiryType,
uniqueField: uniqueField,
itemType: itemType,
key: key,
redisClient: container.Resolve[IClient](redisConfigName),
lastVisitAt: time.Now(),
}
if r.expiry > 0 {
go r.updateTtl()
}
return r
}
func (r *cacheInRedis) Get() collections.ListAny {
r.updateExpiry()
// 从redis hash中读取到slice
lst, err := r.redisClient.HashToListAny(r.key, r.itemType)
flog.ErrorIfExists(err)
return lst
}
func (r *cacheInRedis) GetItem(cacheId any) any {
// 动态创建实体
entityPtr := reflect.New(r.itemType).Interface()
// hash get
exists, err := r.redisClient.HashToEntity(r.key, parse.ToString(cacheId), entityPtr)
flog.ErrorIfExists(err)
if !exists {
return nil
}
r.updateExpiry()
return reflect.ValueOf(entityPtr).Elem().Interface()
}
func (r *cacheInRedis) GetItems(cacheIds []any) collections.ListAny {
var keys []string
for _, cacheId := range cacheIds {
keys = append(keys, parse.ToString(cacheId))
}
items := collections.NewListAny()
// 批量获取
results, err := r.redisClient.HashGets(r.key, keys...)
flog.ErrorIfExists(err)
if err != nil {
return items
}
// 转成数组
for _, jsonContent := range results {
entity := reflect.New(r.itemType).Interface()
if err = snc.Unmarshal([]byte(jsonContent), entity); err == nil {
items.Add(entity)
}
}
r.updateExpiry()
return items
}
func (r *cacheInRedis) Set(val collections.ListAny) {
if val.Count() == 0 {
return
}
r.updateExpiry()
// 将ListAny转成map
values := make(map[string]any)
for _, item := range val.ToArray() {
id := r.GetUniqueId(item)
jsonContent, _ := snc.Marshal(item)
values[id] = string(jsonContent)
}
err := r.redisClient.HashSet(r.key, values)
flog.ErrorIfExists(err)
// 设置缓存失效时间
if r.expiry > 0 {
r.setTTL()
}
}
func (r *cacheInRedis) SaveItem(newVal any) {
r.updateExpiry()
newValDataKey := r.GetUniqueId(newVal)
err := r.redisClient.HashSetEntity(r.key, newValDataKey, newVal)
flog.ErrorIfExists(err)
// 如果直接调用SaveItem方法,会导致绝对时间策略的情况下,没有设置TTL。
if r.expiry > 0 && r.expiryType == eumExpiryType.AbsoluteExpiration && !r.unSetTTl {
r.setTTL()
}
}
func (r *cacheInRedis) Remove(cacheId any) {
_, err := r.redisClient.HashDel(r.key, parse.Convert(cacheId, ""))
flog.ErrorIfExists(err)
}
func (r *cacheInRedis) Clear() {
_, err := r.redisClient.Del(r.key)
flog.ErrorIfExists(err)
}
func (r *cacheInRedis) Count() int {
r.updateExpiry()
return r.redisClient.HashCount(r.key)
}
func (r *cacheInRedis) ExistsItem(cacheId any) bool {
r.updateExpiry()
exists, err := r.redisClient.HashExists(r.key, parse.Convert(cacheId, ""))
flog.ErrorIfExists(err)
return exists
}
func (r *cacheInRedis) ExistsKey() bool {
r.updateExpiry()
exists, err := r.redisClient.Exists(r.key)
flog.ErrorIfExists(err)
return exists
}
// GetUniqueId 获取唯一字段数据
func (r *cacheInRedis) GetUniqueId(item any) string {
val := reflect.ValueOf(item).FieldByName(r.uniqueField).Interface()
return parse.Convert(val, "")
}
// 更新缓存过期时间
func (r *cacheInRedis) updateExpiry() {
if r.expiry > 0 && r.expiryType == eumExpiryType.SlidingExpiration {
r.lastVisitAt = time.Now()
}
}
// 续期
func (r *cacheInRedis) updateTtl() {
expiry := r.expiry
if r.expiry >= 2*time.Second {
expiry = r.expiry - time.Second
} else if r.expiry >= time.Second {
expiry = r.expiry - 500*time.Millisecond
} else if r.expiry >= 500*time.Millisecond {
expiry = r.expiry - 100*time.Millisecond
}
ticker := time.NewTicker(expiry)
for range ticker.C {
// 绝对时间的情况下,这时redis已自动过期了,所以需要将状态重新标记为:未设置状态
if r.expiryType == eumExpiryType.SlidingExpiration {
r.unSetTTl = false
} else if r.expiryType == eumExpiryType.SlidingExpiration && !r.lastVisitAt.IsZero() {
r.setTTL()
}
}
}
func (r *cacheInRedis) setTTL() {
r.lastVisitAt = time.Time{}
r.unSetTTl = true
_, _ = r.redisClient.SetTTL(r.key, r.expiry)
}