-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcache.go
116 lines (96 loc) · 1.96 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
package generic
import (
"context"
"sync"
"time"
)
type simpleCache struct {
items sync.Map
cancel func()
}
type item struct {
data interface{}
expires int64
}
func NewCache(garbageCollect time.Duration) Cache {
cache := &simpleCache{
items: sync.Map{},
}
if garbageCollect > 0 {
go func() {
ticker := time.NewTicker(garbageCollect)
ctx, cancel := context.WithCancel(context.Background())
cache.cancel = cancel
defer cancel()
for {
select {
case <-ctx.Done():
ticker.Stop()
return
case <-ticker.C:
now := time.Now().UnixNano()
cache.items.Range(func(key, value interface{}) bool {
item := value.(item)
if item.expires > 0 && now > item.expires {
cache.items.Delete(key)
}
return true
})
}
}
}()
}
return cache
}
func (c *simpleCache) Get(key interface{}) (interface{}, bool) {
obj, exists := c.items.Load(key)
if !exists {
return nil, false
}
item := obj.(item)
if item.expires > 0 && time.Now().UnixNano() > item.expires {
return nil, false
}
return item.data, true
}
func (c *simpleCache) Exists(key interface{}) bool {
_, ok := c.Get(key)
return ok
}
func (c *simpleCache) Set(key interface{}, value interface{}, duration time.Duration) {
var expires int64
if duration > 0 {
expires = time.Now().Add(duration).UnixNano()
}
c.items.Store(key, item{
data: value,
expires: expires,
})
}
func (c *simpleCache) Range(f func(key, value interface{}) bool) {
now := time.Now().UnixNano()
fn := func(key, value interface{}) bool {
item := value.(item)
if item.expires > 0 && now > item.expires {
return true
}
return f(key, item.data)
}
c.items.Range(fn)
}
func (c *simpleCache) Delete(key interface{}) {
c.items.Delete(key)
}
func (c *simpleCache) Len() int {
count := 0
c.Range(func(key, value interface{}) bool {
if value != nil {
count++
}
return true
})
return count
}
func (c *simpleCache) Close() {
c.cancel()
}