forked from orijtech/groupcache
-
Notifications
You must be signed in to change notification settings - Fork 12
/
untyped_caches.go
119 lines (102 loc) · 2.49 KB
/
untyped_caches.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
//go:build !go1.18
/*
Copyright 2022 Vimeo Inc.
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 galaxycache
import (
"sync"
"github.com/vimeo/galaxycache/lru"
)
type candidateCache struct {
mu sync.Mutex
lru *lru.Cache
}
func newCandidateCache(maxCandidates int) candidateCache {
return candidateCache{
lru: lru.New(maxCandidates),
}
}
func (c *candidateCache) addToCandidateCache(key string, kStats *keyStats) {
c.mu.Lock()
defer c.mu.Unlock()
c.lru.Add(key, kStats)
}
func (c *candidateCache) get(key string) (*keyStats, bool) {
c.mu.Lock()
defer c.mu.Unlock()
val, ok := c.lru.Get(key)
if !ok {
return nil, false
}
return val.(*keyStats), true
}
// cache is a wrapper around an *lru.Cache that adds synchronization
// and counts the size of all keys and values. Candidate cache only
// utilizes the lru.Cache and mutex, not the included stats.
type cache struct {
mu sync.Mutex
lru *lru.Cache
nbytes AtomicInt // of all keys and values
nhit, nget int64
nevict int64 // number of evictions
ctype CacheType
}
func newCache(kind CacheType) cache {
return cache{
lru: lru.New(0),
ctype: kind,
}
}
func (c *cache) setLRUOnEvicted(f func(key string, kStats *keyStats)) {
c.lru.OnEvicted = func(key lru.Key, value interface{}) {
val := value.(valWithStat)
c.nbytes.Add(-(int64(len(key.(string))) + val.size()))
c.nevict++
if f != nil {
f(key.(string), val.stats)
}
}
}
func (c *cache) get(key string) (valWithStat, bool) {
c.mu.Lock()
defer c.mu.Unlock()
c.nget++
if c.lru == nil {
return valWithStat{}, false
}
vi, ok := c.lru.Get(key)
if !ok {
return valWithStat{}, false
}
c.nhit++
return vi.(valWithStat), true
}
func (c *cache) mostRecent() *valWithStat {
c.mu.Lock()
defer c.mu.Unlock()
v := c.lru.MostRecent()
val, ok := v.(*valWithStat)
if !ok {
return nil
}
return val
}
func (c *cache) leastRecent() *valWithStat {
c.mu.Lock()
defer c.mu.Unlock()
v := c.lru.LeastRecent()
val, ok := v.(*valWithStat)
if !ok {
return nil
}
return val
}