forked from orijtech/groupcache
-
Notifications
You must be signed in to change notification settings - Fork 12
/
typed_caches.go
105 lines (88 loc) · 2.35 KB
/
typed_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
//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.TypedCache[string, *keyStats]
}
func newCandidateCache(maxCandidates int) candidateCache {
return candidateCache{
lru: lru.TypedNew[string, *keyStats](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()
return c.lru.Get(key)
}
// 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.TypedCache[string, valWithStat]
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.TypedNew[string, valWithStat](0),
ctype: kind,
}
}
func (c *cache) setLRUOnEvicted(f func(key string, kStats *keyStats)) {
c.lru.OnEvicted = func(key string, value valWithStat) {
val := value
c.nbytes.Add(-(int64(len(key)) + val.size()))
c.nevict++
if f != nil {
f(key, 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, true
}
func (c *cache) mostRecent() *valWithStat {
c.mu.Lock()
defer c.mu.Unlock()
return c.lru.MostRecent()
}
func (c *cache) leastRecent() *valWithStat {
c.mu.Lock()
defer c.mu.Unlock()
return c.lru.LeastRecent()
}