-
Notifications
You must be signed in to change notification settings - Fork 0
/
cache.go
179 lines (162 loc) · 2.67 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
package pot
import (
"sync"
"time"
"github.com/swxctx/pot/plog"
)
/*
cache
@Description: cache element
*/
type cache struct {
// cache value
elems map[string]Element
// mutex
mu sync.RWMutex
}
/*
newCache
@Desc: new cache
@return: *cache
*/
func newCache() *cache {
elems := make(map[string]Element)
cacheVal := &cache{
elems: elems,
}
plog.Infof("cache init finish...")
return cacheVal
}
/*
Set
@Desc: set value to cache
@receiver: c
@param: key
@param: value
@param: expiration
*/
func (c *cache) set(key string, value interface{}, expiration ...time.Duration) {
c.mu.Lock()
c.elems[key] = Element{
Value: value,
Expiration: paramsCacheExpiration(expiration...),
}
c.mu.Unlock()
}
/*
Get
@Desc: get value by cache
@receiver: c
@param: key
@return: interface{}
@return: bool
*/
func (c *cache) get(key string) interface{} {
c.mu.RLock()
elem, exists := c.elems[key]
if !exists {
c.mu.RUnlock()
return nil
}
// expired
if elem.expired() {
c.mu.RUnlock()
return nil
}
c.mu.RUnlock()
return elem.Value
}
/*
exists
@Desc: check key is exists
@receiver: c
@param: key
@return: bool
*/
func (c *cache) exists(key string) bool {
c.mu.RLock()
elem, exists := c.elems[key]
if !exists {
c.mu.RUnlock()
return false
}
// expired
if elem.expired() {
c.mu.RUnlock()
return false
}
c.mu.RUnlock()
return true
}
/*
ttl
@Desc: get key ttl
@receiver: c
@param: key
@return: int64
*/
func (c *cache) ttl(key string) int64 {
c.mu.RLock()
//expired
elem, exists := c.elems[key]
if !exists || elem.expired() {
c.mu.RUnlock()
return EXPIRATION_IS_EXPIRED
}
//forever
if elem.Expiration == EXPIRATION_NOT_SET {
c.mu.RUnlock()
return EXPIRATION_NOT_SET
}
c.mu.RUnlock()
return elem.Expiration - time.Now().Unix()
}
/*
expire
@Desc: set key expire
@receiver: c
@param: key
@param: expire
@return: bool
*/
func (c *cache) expire(key string, expire time.Duration) bool {
c.mu.RLock()
elem, exists := c.elems[key]
if !exists || elem.expired() {
c.mu.RUnlock()
return false
}
c.mu.RUnlock()
c.mu.Lock()
elem.Expiration = paramsCacheExpiration(expire)
c.elems[key] = elem
c.mu.Unlock()
return true
}
/*
delete
@Desc: 删除key
@receiver: c
@param: k
*/
func (c *cache) del(key string) {
delete(c.elems, key)
}
/*
expired
@Desc: key过期处理
@receiver: c
*/
func (c *cache) expiredRoutine() {
nowTime := time.Now()
now := nowTime.Unix()
plog.Tracef("expiredRoutine running, start-> %dms", nowTime.UnixNano()/1000)
c.mu.Lock()
for k, v := range c.elems {
if v.Expiration > 0 && now > v.Expiration {
c.del(k)
}
}
c.mu.Unlock()
plog.Tracef("expiredRoutine finish, elapsed-> %dms", time.Now().UnixNano()/1000-nowTime.UnixNano()/1000)
}