-
Notifications
You must be signed in to change notification settings - Fork 4
/
report.go
233 lines (188 loc) · 5.2 KB
/
report.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
// 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 (
"sync/atomic"
"time"
)
// Reporter stores some values for reporting.
type Reporter struct {
conf *config
cache Cache
missedCount uint64
hitCount uint64
gcCount uint64
loadCount uint64
}
func (r *Reporter) increaseMissedCount() {
atomic.AddUint64(&r.missedCount, 1)
}
func (r *Reporter) increaseHitCount() {
atomic.AddUint64(&r.hitCount, 1)
}
func (r *Reporter) increaseGCCount() {
atomic.AddUint64(&r.gcCount, 1)
}
func (r *Reporter) increaseLoadCount() {
atomic.AddUint64(&r.loadCount, 1)
}
// CacheName returns the name of cache.
// You can use WithCacheName to set cache's name.
func (r *Reporter) CacheName() string {
return r.conf.cacheName
}
// CacheType returns the type of cache.
// See CacheType.
func (r *Reporter) CacheType() CacheType {
return r.conf.cacheType
}
// CacheShardings returns the shardings of cache.
// You can use WithShardings to set cache's shardings.
// Zero shardings means cache is non-sharding.
func (r *Reporter) CacheShardings() int {
return r.conf.shardings
}
// CacheGC returns the gc duration of cache.
// You can use WithGC to set cache's gc duration.
// Zero duration means cache disables gc.
func (r *Reporter) CacheGC() time.Duration {
return r.conf.gcDuration
}
// CacheSize returns the size of cache.
func (r *Reporter) CacheSize() int {
return r.cache.Size()
}
// CountMissed returns the missed count.
func (r *Reporter) CountMissed() uint64 {
return atomic.LoadUint64(&r.missedCount)
}
// CountHit returns the hit count.
func (r *Reporter) CountHit() uint64 {
return atomic.LoadUint64(&r.hitCount)
}
// CountGC returns the gc count.
func (r *Reporter) CountGC() uint64 {
return atomic.LoadUint64(&r.gcCount)
}
// CountLoad returns the load count.
func (r *Reporter) CountLoad() uint64 {
return atomic.LoadUint64(&r.loadCount)
}
// MissedRate returns the missed rate.
func (r *Reporter) MissedRate() float64 {
hit := r.CountHit()
missed := r.CountMissed()
total := hit + missed
if total <= 0 {
return 0.0
}
return float64(missed) / float64(total)
}
// HitRate returns the hit rate.
func (r *Reporter) HitRate() float64 {
hit := r.CountHit()
missed := r.CountMissed()
total := hit + missed
if total <= 0 {
return 0.0
}
return float64(hit) / float64(total)
}
type reportableCache struct {
*config
*Reporter
}
func report(conf *config, cache Cache) (Cache, *Reporter) {
reporter := &Reporter{
conf: conf,
cache: cache,
hitCount: 0,
missedCount: 0,
gcCount: 0,
loadCount: 0,
}
cache = &reportableCache{
config: conf,
Reporter: reporter,
}
return cache, reporter
}
// Get gets the value of key from cache and returns value if found.
func (rc *reportableCache) Get(key string) (value interface{}, found bool) {
value, found = rc.cache.Get(key)
if found {
if rc.recordHit {
rc.increaseHitCount()
}
if rc.reportHit != nil {
rc.reportHit(rc.Reporter, key, value)
}
} else {
if rc.recordMissed {
rc.increaseMissedCount()
}
if rc.reportMissed != nil {
rc.reportMissed(rc.Reporter, key)
}
}
return value, found
}
// Set sets key and value to cache with ttl and returns evicted value if exists and unexpired.
// See Cache interface.
func (rc *reportableCache) Set(key string, value interface{}, ttl time.Duration) (evictedValue interface{}) {
return rc.cache.Set(key, value, ttl)
}
// Remove removes key and returns the removed value of key.
// See Cache interface.
func (rc *reportableCache) Remove(key string) (removedValue interface{}) {
return rc.cache.Remove(key)
}
// Size returns the count of keys in cache.
// See Cache interface.
func (rc *reportableCache) Size() (size int) {
return rc.cache.Size()
}
// GC cleans the expired keys in cache and returns the exact count cleaned.
// See Cache interface.
func (rc *reportableCache) GC() (cleans int) {
if rc.recordGC {
rc.increaseGCCount()
}
if rc.reportGC == nil {
return rc.cache.GC()
}
begin := rc.now()
cleans = rc.cache.GC()
end := rc.now()
cost := time.Duration(end - begin)
rc.reportGC(rc.Reporter, cost, cleans)
return cleans
}
// Reset resets cache to initial status which is like a new cache.
// See Cache interface.
func (rc *reportableCache) Reset() {
rc.cache.Reset()
}
// Load loads a key with ttl to cache and returns an error if failed.
// See Cache interface.
func (rc *reportableCache) Load(key string, ttl time.Duration, load func() (value interface{}, err error)) (value interface{}, err error) {
value, err = rc.cache.Load(key, ttl, load)
if rc.recordLoad {
rc.increaseLoadCount()
}
if rc.reportLoad != nil {
rc.reportLoad(rc.Reporter, key, value, ttl, err)
}
return value, err
}