-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcache.go
203 lines (169 loc) · 3.52 KB
/
cache.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
package cache
import (
"context"
"encoding/json"
"fmt"
"time"
"github.com/redis/go-redis/v9"
)
type Options struct {
prefix string
expired time.Duration
}
type Option func(*Options)
// Cache Cache
type Cache struct {
redis *redis.Client
redisCluster *redis.ClusterClient
tags []string
prefix string
expired time.Duration
}
func WithPrefix(prefix string) Option {
return func(o *Options) {
o.prefix = prefix
}
}
func WithExpired(exp time.Duration) Option {
return func(o *Options) {
o.expired = exp
}
}
// New New
func New(ctx context.Context, client *redis.Client, opts ...Option) *Cache {
pong, err := client.Ping(ctx).Result()
if err != nil {
panic(err)
}
fmt.Println("redis pong: ", pong)
o := &Options{}
for _, opt := range opts {
opt(o)
}
return &Cache{
redis: client,
prefix: o.prefix,
expired: o.expired,
}
}
// NewCluster NewCluster
func NewCluster(ctx context.Context, client *redis.ClusterClient) *Cache {
pong, err := client.Ping(ctx).Result()
if err != nil {
panic(err)
}
fmt.Println("redis pong: ", pong)
return &Cache{
redisCluster: client,
}
}
// Tag .Tag()
func (c *Cache) Tag(tag ...string) *Cache {
c.tags = tag
return c
}
// Tag .AddTag()
func (c *Cache) AddTag(tag ...string) *Cache {
c.tags = append(c.tags, tag...)
return c
}
// Set .Tag().Set()
func (c *Cache) Set(ctx context.Context, key string, val interface{}) error {
if len(c.prefix) > 0 {
key = c.prefix + ":" + key
}
_, err := c.redis.TxPipelined(ctx, func(p redis.Pipeliner) error {
for _, v := range c.tags {
err := p.SAdd(ctx, c.prefix+":"+v, key).Err()
if err != nil {
fmt.Println(fmt.Errorf("p.SAdd err %v", err))
return err
}
}
value, err := json.Marshal(val)
if err != nil {
fmt.Println("json.Marshal err:", err)
return err
}
err = p.Set(ctx, key, string(value), c.expired).Err()
if err != nil {
fmt.Println("p.Set err:", err)
return err
}
return nil
})
if err != nil {
return err
}
return nil
}
// Get .Get()
func (c *Cache) Get(ctx context.Context, key string, val interface{}) error {
if len(c.prefix) > 0 {
key = c.prefix + ":" + key
}
jsonStr, err := c.redis.Get(ctx, key).Result()
if err != nil {
return err
}
err = json.Unmarshal([]byte(jsonStr), &val)
if err != nil {
fmt.Println("json.Unmarshal err:", err)
return err
}
return nil
}
// Set .Tag().Del()
func (c *Cache) Del(ctx context.Context, key string) error {
if len(c.prefix) > 0 {
key = c.prefix + ":" + key
}
_, err := c.redis.TxPipelined(ctx, func(p redis.Pipeliner) error {
for _, v := range c.tags {
err := p.SRem(ctx, c.prefix+":"+v, key).Err()
if err != nil {
fmt.Println(fmt.Errorf("p.SAdd err %v", err))
return err
}
}
err := p.Del(ctx, key).Err()
if err != nil {
fmt.Println("p.Set err:", err)
return err
}
return nil
})
if err != nil {
return err
}
return nil
}
// Flush .Tag().Flush()
func (c *Cache) Flush(ctx context.Context) error {
_, err := c.redis.TxPipelined(ctx, func(p redis.Pipeliner) error {
for _, v := range c.tags {
members, err := c.redis.SMembers(ctx, c.prefix+":"+v).Result()
if err != nil {
fmt.Println("c.redis.SMembers err:", err)
return err
}
if len(members) > 0 {
err = p.Del(ctx, members...).Err()
if err != nil {
fmt.Println("p.Del err:", err)
return err
}
}
err = p.Del(ctx, c.prefix+":"+v).Err()
if err != nil {
fmt.Println("p.Del err:", err)
return err
}
}
return nil
})
if err != nil {
return err
}
return nil
}