-
Notifications
You must be signed in to change notification settings - Fork 4
/
lfu.go
195 lines (151 loc) · 4.16 KB
/
lfu.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
// Copyright 2023 FishGoddess. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package cachego
import (
"time"
"github.com/FishGoddess/cachego/pkg/heap"
)
type lfuCache struct {
cache
itemMap map[string]*heap.Item
itemHeap *heap.Heap
}
func newLFUCache(conf *config) Cache {
if conf.maxEntries <= 0 {
panic("cachego: lfu cache must specify max entries")
}
cache := &lfuCache{
itemMap: make(map[string]*heap.Item, mapInitialCap),
itemHeap: heap.New(sliceInitialCap),
}
cache.setup(conf, cache)
return cache
}
func (lc *lfuCache) unwrap(item *heap.Item) *entry {
entry, ok := item.Value.(*entry)
if !ok {
panic("cachego: failed to unwrap lfu item's value to entry")
}
return entry
}
func (lc *lfuCache) evict() (evictedValue interface{}) {
if item := lc.itemHeap.Pop(); item != nil {
return lc.removeItem(item)
}
return nil
}
func (lc *lfuCache) get(key string) (value interface{}, found bool) {
item, ok := lc.itemMap[key]
if !ok {
return nil, false
}
entry := lc.unwrap(item)
if entry.expired(0) {
return nil, false
}
item.Adjust(item.Weight() + 1)
return entry.value, true
}
func (lc *lfuCache) set(key string, value interface{}, ttl time.Duration) (evictedValue interface{}) {
item, ok := lc.itemMap[key]
if ok {
entry := lc.unwrap(item)
entry.setup(key, value, ttl)
item.Adjust(item.Weight() + 1)
return nil
}
if lc.maxEntries > 0 && lc.itemHeap.Size() >= lc.maxEntries {
evictedValue = lc.evict()
}
item = lc.itemHeap.Push(0, newEntry(key, value, ttl, lc.now))
lc.itemMap[key] = item
return evictedValue
}
func (lc *lfuCache) removeItem(item *heap.Item) (removedValue interface{}) {
entry := lc.unwrap(item)
delete(lc.itemMap, entry.key)
lc.itemHeap.Remove(item)
return entry.value
}
func (lc *lfuCache) remove(key string) (removedValue interface{}) {
if item, ok := lc.itemMap[key]; ok {
return lc.removeItem(item)
}
return nil
}
func (lc *lfuCache) size() (size int) {
return len(lc.itemMap)
}
func (lc *lfuCache) gc() (cleans int) {
now := lc.now()
scans := 0
for _, item := range lc.itemMap {
scans++
if entry := lc.unwrap(item); entry.expired(now) {
lc.removeItem(item)
cleans++
}
if lc.maxScans > 0 && scans >= lc.maxScans {
break
}
}
return cleans
}
func (lc *lfuCache) reset() {
lc.itemMap = make(map[string]*heap.Item, mapInitialCap)
lc.itemHeap = heap.New(sliceInitialCap)
lc.Loader.Reset()
}
// Get gets the value of key from cache and returns value if found.
// See Cache interface.
func (lc *lfuCache) Get(key string) (value interface{}, found bool) {
lc.lock.Lock()
defer lc.lock.Unlock()
return lc.get(key)
}
// Set sets key and value to cache with ttl and returns evicted value if exists and unexpired.
// See Cache interface.
func (lc *lfuCache) Set(key string, value interface{}, ttl time.Duration) (evictedValue interface{}) {
lc.lock.Lock()
defer lc.lock.Unlock()
return lc.set(key, value, ttl)
}
// Remove removes key and returns the removed value of key.
// See Cache interface.
func (lc *lfuCache) Remove(key string) (removedValue interface{}) {
lc.lock.Lock()
defer lc.lock.Unlock()
return lc.remove(key)
}
// Size returns the count of keys in cache.
// See Cache interface.
func (lc *lfuCache) Size() (size int) {
lc.lock.RLock()
defer lc.lock.RUnlock()
return lc.size()
}
// GC cleans the expired keys in cache and returns the exact count cleaned.
// See Cache interface.
func (lc *lfuCache) GC() (cleans int) {
lc.lock.Lock()
defer lc.lock.Unlock()
return lc.gc()
}
// Reset resets cache to initial status which is like a new cache.
// See Cache interface.
func (lc *lfuCache) Reset() {
lc.lock.Lock()
defer lc.lock.Unlock()
lc.reset()
}