-
Notifications
You must be signed in to change notification settings - Fork 1
/
provider_redis.go
191 lines (150 loc) · 3.85 KB
/
provider_redis.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
package cache
import (
"context"
"time"
"github.com/hashicorp/go-multierror"
"github.com/pkg/errors"
"github.com/redis/go-redis/v9"
"github.com/rs/zerolog"
"github.com/rs/zerolog/log"
"github.com/vmihailenco/msgpack/v5"
)
type RedisCache[T Entity, V any] struct {
client redis.Cmdable
chunkSize int
}
func NewRedisCache[T Entity, V any](
client redis.Cmdable,
) Provider[T, V] {
return &RedisCache[T, V]{
client: client,
chunkSize: 100,
}
}
func (r *RedisCache[T, V]) Get(ctx context.Context, key *Key[V], requiredModelVersion uint16) (*T, error) {
cmd := r.client.Get(ctx, key.Key)
if cmd.Err() != nil {
if errors.Is(cmd.Err(), redis.Nil) {
return nil, nil
}
return nil, errors.WithStack(cmd.Err())
}
bts, err := cmd.Bytes()
if err != nil {
return nil, errors.WithStack(err)
}
var item T
if err = msgpack.Unmarshal(bts, &item); err != nil {
return nil, errors.WithStack(err)
}
if item.GetCacheModelVersion() != requiredModelVersion {
return nil, nil
}
return &item, nil
}
func (r *RedisCache[T, V]) chunkBy(items []*Key[V], chunkSize int) (chunks [][]*Key[V]) {
for chunkSize < len(items) {
items, chunks = items[chunkSize:], append(chunks, items[0:chunkSize:chunkSize])
}
return append(chunks, items)
}
type redisChunkResponse[T, V any] struct {
Error error
Missing []*Key[V]
Results map[*Key[V]]*T
}
func (r *RedisCache[T, V]) MGet(ctx context.Context, keys []*Key[V], requiredModelVersion uint16) (map[*Key[V]]*T, []*Key[V], error) {
chunks := r.chunkBy(keys, r.chunkSize)
var respChannels []chan redisChunkResponse[T, V]
for _, chunk := range chunks {
chCopy := chunk
ch := make(chan redisChunkResponse[T, V])
respChannels = append(respChannels, ch)
go func() {
defer func() {
close(ch)
}()
strSlice := make([]string, 0, len(chCopy))
for _, v := range chCopy {
strSlice = append(strSlice, v.Key)
}
cmd := r.client.MGet(ctx, strSlice...)
if cmd.Err() != nil {
ch <- redisChunkResponse[T, V]{
Error: errors.WithStack(cmd.Err()),
}
return
}
var missing []*Key[V]
results := map[*Key[V]]*T{}
for i, v := range cmd.Val() {
if v == nil {
missing = append(missing, chCopy[i])
continue
}
var item T
var toUnpack []byte
switch val := v.(type) {
case []byte:
toUnpack = val
case string:
toUnpack = []byte(val)
}
if err := msgpack.Unmarshal(toUnpack, &item); err != nil {
zerolog.Ctx(ctx).Err(err).Send() // todo looks like cache is invalid
missing = append(missing, chCopy[i])
continue
}
if item.GetCacheModelVersion() != requiredModelVersion {
continue
}
results[chCopy[i]] = &item
}
ch <- redisChunkResponse[T, V]{
Missing: missing,
Results: results,
}
}()
}
var missing []*Key[V]
results := map[*Key[V]]*T{}
for _, ch := range respChannels {
resp := <-ch
if resp.Error != nil {
zerolog.Ctx(ctx).Err(resp.Error).Send()
continue
}
if len(resp.Missing) > 0 {
missing = append(missing, resp.Missing...)
}
for k, v := range resp.Results {
results[k] = v
}
}
return results, missing, nil
}
func (r *RedisCache[T, V]) MSet(ctx context.Context, values map[string]*T, ttl time.Duration) error {
var multiErr error
finalArr := make([]interface{}, 0, len(values)*2)
for k, v := range values {
if b, err := msgpack.Marshal(v); err != nil {
multiErr = multierror.Append(multiErr, errors.WithStack(err))
continue
} else {
finalArr = append(finalArr, k, b)
}
}
if len(finalArr) == 0 {
return errors.Wrap(multiErr, "no items to continue")
}
if err := r.client.MSet(ctx, finalArr).Err(); err != nil {
log.Logger.Err(err).Send()
return errors.WithStack(err)
}
for key := range values {
if err := r.client.Expire(context.Background(), key, ttl).Err(); err != nil {
zerolog.Ctx(ctx).Err(err).Send()
}
}
return nil
}