-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathcache.go
53 lines (46 loc) · 991 Bytes
/
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
package user
import (
"context"
"github.com/xiaomeng79/istio-micro/cinit"
"github.com/xiaomeng79/istio-micro/internal/utils"
"github.com/xiaomeng79/go-log"
)
const (
CacheIDPrefix = "ucid"
)
func CacheGet(ctx context.Context, id int64) (map[string]string, error) {
k := getIDKey(CacheIDPrefix, id)
// 获取全部
r, err := cinit.RedisCli.HGetAll(k).Result()
if err != nil {
log.Info(err.Error(), ctx)
}
if len(r) == 0 {
CacheSet(ctx, id)
}
return r, err
}
func CacheSet(ctx context.Context, id int64) {
m := new(User)
m.ID = id
err := m.QueryOne(ctx)
if err != nil {
log.Info(err.Error(), ctx)
return
}
_m := utils.Struct2Map(*m)
k := getIDKey(CacheIDPrefix, id)
err = cinit.RedisCli.HMSet(k, _m).Err()
if err != nil {
log.Error(err.Error(), ctx)
return
}
setKeyExpire(ctx, k)
}
func CacheDel(ctx context.Context, id int64) {
k := getIDKey(CacheIDPrefix, id)
err := cinit.RedisCli.Del(k).Err()
if err != nil {
log.Info(err.Error(), ctx)
}
}