-
Notifications
You must be signed in to change notification settings - Fork 13
/
cache.go
530 lines (440 loc) · 13.7 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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
// Package agecache is largely inspired by https://github.com/golang/groupcache
package agecache
import (
"container/list"
"errors"
"math/rand"
"sync"
"time"
)
// Stats hold cache statistics.
//
// The struct supports stats package tags, example:
//
// prev := cache.Stats()
// s := cache.Stats().Delta(prev)
// stats.WithPrefix("mycache").Observe(s)
type Stats struct {
Capacity int64 `metric:"capacity" type:"gauge"` // Gauge, maximum capacity for the cache
Count int64 `metric:"count" type:"gauge"` // Gauge, number of items in the cache
Sets int64 `metric:"sets" type:"counter"` // Counter, number of sets
Gets int64 `metric:"gets" type:"counter"` // Counter, number of gets
Hits int64 `metric:"hits" type:"counter"` // Counter, number of cache hits from Get operations
Misses int64 `metric:"misses" type:"counter"` // Counter, number of cache misses from Get operations
Evictions int64 `metric:"evictions" type:"counter"` // Counter, number of evictions
}
// Delta returns a Stats object such that all counters are calculated as the
// difference since the previous.
func (stats Stats) Delta(previous Stats) Stats {
return Stats{
Capacity: stats.Capacity,
Count: stats.Count,
Sets: stats.Sets - previous.Sets,
Gets: stats.Gets - previous.Gets,
Hits: stats.Hits - previous.Hits,
Misses: stats.Misses - previous.Misses,
Evictions: stats.Evictions - previous.Evictions,
}
}
// RandGenerator represents a random number generator.
type RandGenerator interface {
Int63n(n int64) int64
}
// ExpirationType enumerates expiration types.
type ExpirationType int
const (
// PassiveExpration expires items passively by checking
// the item expiry when `.Get()` is called, if the item was
// expired, it is deleted and nil is returned.
PassiveExpration ExpirationType = iota
// ActiveExpiration expires items by managing
// a goroutine to actively GC expired items in the background.
ActiveExpiration
)
// Config configures the cache.
type Config struct {
// Maximum number of items in the cache
Capacity int
// Optional max duration before an item expires. Must be greater than or
// equal to MinAge. If zero, expiration is disabled.
MaxAge time.Duration
// Optional min duration before an item expires. Must be less than or equal
// to MaxAge. When less than MaxAge, uniformly distributed random jitter is
// added to the expiration time. If equal or zero, jitter is disabled.
MinAge time.Duration
// Type of key expiration: Passive or Active
ExpirationType ExpirationType
// For active expiration, how often to iterate over the keyspace. Defaults
// to the MaxAge
ExpirationInterval time.Duration
// Optional callback invoked when an item is evicted due to the LRU policy
OnEviction func(key, value interface{})
// Optional callback invoked when an item expired
OnExpiration func(key, value interface{})
// Optional refresh interval after which all items in the cache expires.
// If zero, refreshing cache is disabled.
RefreshInterval time.Duration
// Optional on refresh callback invoked when the cache is refreshed
// Both RefreshInterval and OnRefresh must be provided to enable background cache refresh
OnRefresh func() map[interface{}]interface{}
}
// Entry pointed to by each list.Element
type cacheEntry struct {
key interface{}
value interface{}
timestamp time.Time
}
// Cache implements a thread-safe fixed-capacity LRU cache.
type Cache struct {
// Fields defined by configuration
capacity int
minAge time.Duration
maxAge time.Duration
expirationType ExpirationType
expirationInterval time.Duration
onEviction func(key, value interface{})
onExpiration func(key, value interface{})
// Cache statistics
sets int64
gets int64
hits int64
misses int64
evictions int64
items map[interface{}]*list.Element
evictionList *list.List
mutex sync.RWMutex
rand RandGenerator
}
// New constructs an LRU Cache with the given Config object. config.Capacity
// must be a positive int, and config.MaxAge a zero or positive duration. A
// duration of zero disables item expiration. Panics given an invalid
// config.Capacity or config.MaxAge.
func New(config Config) *Cache {
if config.Capacity <= 0 {
panic("Must supply a positive config.Capacity")
}
if config.MaxAge < 0 {
panic("Must supply a zero or positive config.MaxAge")
}
if config.MinAge < 0 {
panic("Must supply a zero or positive config.MinAge")
}
if config.MinAge > 0 && config.MinAge > config.MaxAge {
panic("config.MinAge must be less than or equal to config.MaxAge")
}
if config.RefreshInterval < 0 {
panic("Must supply a zero or positive config.RefreshInterval")
}
minAge := config.MinAge
if minAge == 0 {
minAge = config.MaxAge
}
interval := config.ExpirationInterval
if interval <= 0 {
interval = config.MaxAge
}
seed := rand.NewSource(time.Now().UnixNano())
cache := &Cache{
capacity: config.Capacity,
maxAge: config.MaxAge,
minAge: minAge,
expirationType: config.ExpirationType,
expirationInterval: interval,
onEviction: config.OnEviction,
onExpiration: config.OnExpiration,
items: make(map[interface{}]*list.Element),
evictionList: list.New(),
rand: rand.New(seed),
}
if config.ExpirationType == ActiveExpiration && interval > 0 {
go func() {
for range time.Tick(interval) {
cache.deleteExpired()
}
}()
}
if config.RefreshInterval > 0 && config.OnRefresh != nil {
cache.RefreshCache(config.OnRefresh())
go func() {
t := time.NewTicker(config.RefreshInterval)
defer t.Stop()
for {
<-t.C
items := config.OnRefresh()
// Only refresh the cache if the items provided is not nil
if items != nil {
cache.RefreshCache(items)
}
}
}()
}
return cache
}
// Set updates a key:value pair in the cache. Returns true if an eviction
// occurrred, and subsequently invokes the OnEviction callback.
func (cache *Cache) Set(key, value interface{}) bool {
cache.mutex.Lock()
defer cache.mutex.Unlock()
cache.sets++
timestamp := cache.getTimestamp()
if element, ok := cache.items[key]; ok {
cache.evictionList.MoveToFront(element)
entry := element.Value.(*cacheEntry)
entry.value = value
entry.timestamp = timestamp
return false
}
entry := &cacheEntry{key, value, timestamp}
element := cache.evictionList.PushFront(entry)
cache.items[key] = element
evict := cache.evictionList.Len() > cache.capacity
if evict {
cache.evictOldest()
}
return evict
}
// Get returns the value stored at `key`. The boolean value reports whether or
// not the value was found. The OnExpiration callback is invoked if the value
// had expired on access
func (cache *Cache) Get(key interface{}) (interface{}, bool) {
cache.mutex.Lock()
defer cache.mutex.Unlock()
cache.gets++
if element, ok := cache.items[key]; ok {
entry := element.Value.(*cacheEntry)
if cache.maxAge == 0 || time.Since(entry.timestamp) <= cache.maxAge {
cache.evictionList.MoveToFront(element)
cache.hits++
return entry.value, true
}
// Entry expired
cache.deleteElement(element)
cache.misses++
if cache.onExpiration != nil {
cache.onExpiration(entry.key, entry.value)
}
return nil, false
}
cache.misses++
return nil, false
}
// RefreshCache refreshes the entire cache with the new items map
func (cache *Cache) RefreshCache(items map[interface{}]interface{}) {
cache.mutex.Lock()
defer cache.mutex.Unlock()
cache.items = make(map[interface{}]*list.Element)
cache.evictionList.Init()
for key, value := range items {
cache.sets++
timestamp := cache.getTimestamp()
if element, ok := cache.items[key]; ok {
cache.evictionList.MoveToFront(element)
entry := element.Value.(*cacheEntry)
entry.value = value
entry.timestamp = timestamp
}
entry := &cacheEntry{key, value, timestamp}
element := cache.evictionList.PushFront(entry)
cache.items[key] = element
evict := cache.evictionList.Len() > cache.capacity
if evict {
cache.evictOldest()
}
}
}
// Has returns whether or not the `key` is in the cache without updating
// how recently it was accessed or deleting it for having expired.
func (cache *Cache) Has(key interface{}) bool {
cache.mutex.RLock()
defer cache.mutex.RUnlock()
_, ok := cache.items[key]
return ok
}
// Peek returns the value at the specified key and a boolean specifying whether
// or not it was found, without updating how recently it was accessed or
// deleting it for having expired.
func (cache *Cache) Peek(key interface{}) (interface{}, bool) {
cache.mutex.RLock()
defer cache.mutex.RUnlock()
if element, ok := cache.items[key]; ok {
return element.Value.(*cacheEntry).value, true
}
return nil, false
}
// Remove removes the provided key from the cache, returning a bool indicating
// whether or not it existed.
func (cache *Cache) Remove(key interface{}) bool {
cache.mutex.Lock()
defer cache.mutex.Unlock()
if element, ok := cache.items[key]; ok {
cache.deleteElement(element)
return true
}
return false
}
// EvictOldest removes the oldest item from the cache, while also invoking any
// eviction callback. A bool is returned indicating whether or not an item was
// removed
func (cache *Cache) EvictOldest() bool {
cache.mutex.Lock()
defer cache.mutex.Unlock()
return cache.evictOldest()
}
// Len returns the number of items in the cache.
func (cache *Cache) Len() int {
cache.mutex.RLock()
defer cache.mutex.RUnlock()
return cache.evictionList.Len()
}
// Clear empties the cache.
func (cache *Cache) Clear() {
cache.mutex.Lock()
defer cache.mutex.Unlock()
for _, val := range cache.items {
cache.deleteElement(val)
}
cache.evictionList.Init()
}
// Keys returns all keys in the cache.
func (cache *Cache) Keys() []interface{} {
cache.mutex.RLock()
defer cache.mutex.RUnlock()
keys := make([]interface{}, len(cache.items))
i := 0
for key := range cache.items {
keys[i] = key
i++
}
return keys
}
// OrderedKeys returns all keys in the cache, ordered from oldest to newest.
func (cache *Cache) OrderedKeys() []interface{} {
cache.mutex.RLock()
defer cache.mutex.RUnlock()
keys := make([]interface{}, len(cache.items))
i := 0
for element := cache.evictionList.Back(); element != nil; element = element.Prev() {
keys[i] = element.Value.(*cacheEntry).key
i++
}
return keys
}
// SetMaxAge updates the max age for items in the cache. A duration of zero
// disables expiration. A negative duration, or one that is less than minAge,
// results in an error.
func (cache *Cache) SetMaxAge(maxAge time.Duration) error {
if maxAge < 0 {
return errors.New("Must supply a zero or positive maxAge")
} else if maxAge < cache.minAge {
return errors.New("Must supply a maxAge greater than or equal to minAge")
}
cache.mutex.Lock()
defer cache.mutex.Unlock()
cache.maxAge = maxAge
return nil
}
// SetMinAge updates the min age for items in the cache. A duration of zero
// or equal to maxAge disables jitter. A negative duration, or one that is
// greater than maxAge, results in an error.
func (cache *Cache) SetMinAge(minAge time.Duration) error {
if minAge < 0 {
return errors.New("Must supply a zero or positive minAge")
} else if minAge > cache.maxAge {
return errors.New("Must supply a minAge lesser than or equal to maxAge")
}
cache.mutex.Lock()
defer cache.mutex.Unlock()
if minAge == 0 {
cache.minAge = cache.maxAge
} else {
cache.minAge = minAge
}
return nil
}
// OnEviction sets the eviction callback.
func (cache *Cache) OnEviction(callback func(key, value interface{})) {
cache.mutex.Lock()
defer cache.mutex.Unlock()
cache.onEviction = callback
}
// OnExpiration sets the expiration callback.
func (cache *Cache) OnExpiration(callback func(key, value interface{})) {
cache.mutex.Lock()
defer cache.mutex.Unlock()
cache.onExpiration = callback
}
// Stats returns cache stats.
func (cache *Cache) Stats() Stats {
cache.mutex.RLock()
defer cache.mutex.RUnlock()
return Stats{
Capacity: int64(cache.capacity),
Count: int64(cache.evictionList.Len()),
Sets: cache.sets,
Gets: cache.gets,
Hits: cache.hits,
Misses: cache.misses,
Evictions: cache.evictions,
}
}
// Resize the cache to hold at most n entries. If n is smaller than the current
// size, entries are evicted to fit the new size. It errors if n <= 0.
func (cache *Cache) Resize(n int) error {
if n <= 0 {
return errors.New("must supply a positive capacity to Resize")
}
cache.mutex.Lock()
defer cache.mutex.Unlock()
c := cache.capacity
cache.capacity = n
for i := 0; i < c-n; i++ {
successful := cache.evictOldest()
if !successful {
break
}
}
return nil
}
func (cache *Cache) deleteExpired() {
keys := cache.Keys()
for i := range keys {
cache.mutex.Lock()
if element, ok := cache.items[keys[i]]; ok {
entry := element.Value.(*cacheEntry)
if cache.maxAge > 0 && time.Since(entry.timestamp) > cache.maxAge {
cache.deleteElement(element)
if cache.onExpiration != nil {
cache.onExpiration(entry.key, entry.value)
}
}
}
cache.mutex.Unlock()
}
}
func (cache *Cache) evictOldest() bool {
element := cache.evictionList.Back()
if element == nil {
return false
}
cache.evictions++
entry := cache.deleteElement(element)
if cache.onEviction != nil {
cache.onEviction(entry.key, entry.value)
}
return true
}
func (cache *Cache) deleteElement(element *list.Element) *cacheEntry {
cache.evictionList.Remove(element)
entry := element.Value.(*cacheEntry)
delete(cache.items, entry.key)
return entry
}
func (cache *Cache) getTimestamp() time.Time {
timestamp := time.Now()
if cache.minAge == cache.maxAge {
return timestamp
}
jitter := cache.maxAge - cache.minAge
randVal := cache.rand.Int63n(jitter.Nanoseconds())
return timestamp.Add(time.Duration(-randVal))
}