forked from patrickmn/go-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcache.go
More file actions
1036 lines (923 loc) · 28 KB
/
Copy pathcache.go
File metadata and controls
1036 lines (923 loc) · 28 KB
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
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package cache
import (
"context"
"encoding/gob"
"encoding/json"
"fmt"
"io"
"os"
"runtime"
"sync"
"sync/atomic"
"time"
)
// RedisClient defines the interface for Redis operations.
// This allows using any Redis client (e.g., go-redis v8, v9) by providing an adapter.
type RedisClient interface {
Get(ctx context.Context, key string) ([]byte, error)
Set(ctx context.Context, key string, value any, expiration time.Duration) error
SetNX(ctx context.Context, key string, value any, expiration time.Duration) (bool, error)
Del(ctx context.Context, key string) error
TTL(ctx context.Context, key string) (time.Duration, error)
}
// RedisGetTTLClient is an optional extension of RedisClient. If a configured
// Redis client also implements this interface, the cache uses GetWithTTL to
// fetch a value and its remaining TTL in a single round-trip instead of issuing
// a separate Get and TTL call. Adapters typically implement this with a Redis
// pipeline (GET + TTL) or GETEX.
type RedisGetTTLClient interface {
// GetWithTTL returns the raw value bytes and the remaining TTL for key.
// A negative ttl means "no expiration"; an error means the key is missing
// or unreadable.
GetWithTTL(ctx context.Context, key string) (value []byte, ttl time.Duration, err error)
}
type Item[V any] struct {
Object V
Expiration time.Time
}
type FoundItem uint8
const (
Found FoundItem = iota
Miss
Expired
)
// Returns true if the item has expired.
func (item Item[V]) Expired() bool {
if item.Expiration.IsZero() {
return false
}
return time.Now().After(item.Expiration)
}
const (
// For use with functions that take an expiration time.
NoExpiration time.Duration = -1
// For use with functions that take an expiration time. Equivalent to
// passing in the same expiration duration as was given to New() or
// NewFrom() when the cache was created (e.g. 5 minutes.)
DefaultExpiration time.Duration = 0
)
type Cache[V any] struct {
*cache[V]
// If this is confusing, see the comment at the bottom of New()
}
type cache[V any] struct {
defaultExpiration time.Duration
items map[string]Item[V]
mu sync.RWMutex
onEvicted func(string, V)
janitor *janitor[V]
// Redis & Capacity
redisClient RedisClient
redisCh chan redisItem[V]
localCapacity int
ctx context.Context
wg sync.WaitGroup
redisTimeout time.Duration
// writeThroughOnly enables "memory-authoritative" mode: Redis is used only
// as an async write-behind layer and is never read on a local miss in the
// hot path (Get/getFallback/ModifyNumeric/SetNX). Explicit reads (Sync,
// WarmFromRedis) still hit Redis. Default false keeps the original
// read-through-on-miss behavior.
writeThroughOnly bool
// redisBlockTimeout, when > 0, makes async Redis enqueues block for up to
// this duration when redisCh is full instead of dropping immediately.
redisBlockTimeout time.Duration
// droppedWrites counts async Redis writes dropped because redisCh was full
// (and could not be enqueued within redisBlockTimeout, if set).
droppedWrites atomic.Uint64
}
type redisOp int
const (
redisOpSet redisOp = iota
redisOpDel
redisOpSetNX
)
type redisItem[V any] struct {
k string
v V
d time.Duration
op redisOp
}
// Add an item to the cache, replacing any existing item. If the duration is 0
// (DefaultExpiration), the cache's default expiration time is used. If it is -1
// (NoExpiration), the item never expires.
func (c *cache[V]) Set(k string, x V, d time.Duration) {
c.mu.Lock()
c.set(k, x, d)
c.mu.Unlock()
}
// SetNX adds an item to the cache only if it doesn't already exist.
// Returns true if the item was added, false otherwise.
//
// By default, when Redis is configured, atomicity is guaranteed cluster-wide by
// performing a synchronous SETNX on Redis (the original behavior).
//
// In write-through-only mode (see WithWriteThroughOnly), SetNX is
// local-authoritative: atomicity is guaranteed solely by the local shard lock,
// the SETNX on Redis is performed asynchronously, and the method never blocks on
// Redis. This keeps the hot path fully in-memory at the cost of cluster-wide
// uniqueness guarantees.
func (c *cache[V]) SetNX(k string, x V, d time.Duration) bool {
if d == DefaultExpiration {
d = c.defaultExpiration
}
// Local-authoritative path: decide entirely under the shard lock and push
// the SETNX to Redis asynchronously.
if c.writeThroughOnly {
c.mu.Lock()
item, found := c.items[k]
if found && !item.Expired() {
c.mu.Unlock()
return false
}
c.setLocal(k, x, d)
c.mu.Unlock()
// Best-effort async persistence; keeps the same op semantics on Redis.
c.enqueueRedis(redisItem[V]{k: k, v: x, d: d, op: redisOpSetNX})
return true
}
c.mu.Lock()
item, found := c.items[k]
if found && !item.Expired() {
c.mu.Unlock()
return false
}
if c.redisClient == nil {
c.setLocal(k, x, d)
c.mu.Unlock()
return true
}
c.mu.Unlock()
ctx := c.ctx
var cancel context.CancelFunc
if c.redisTimeout > 0 {
ctx, cancel = context.WithTimeout(c.ctx, c.redisTimeout)
defer cancel()
}
data, err := json.Marshal(x)
if err != nil {
return false
}
success, err := c.redisClient.SetNX(ctx, k, data, d)
if err != nil || !success {
return false
}
c.mu.Lock()
c.setLocal(k, x, d)
c.mu.Unlock()
return true
}
func (c *cache[V]) set(k string, x V, d time.Duration) {
var e time.Time
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
e = time.Now().Add(d)
}
c.items[k] = Item[V]{
Object: x,
Expiration: e,
}
c.evict()
// Async Redis Write
c.enqueueRedis(redisItem[V]{k: k, v: x, d: d, op: redisOpSet})
}
// enqueueRedis hands an operation to the async Redis worker. By default it is
// non-blocking: if redisCh is full the write is dropped and droppedWrites is
// incremented (use DroppedWrites to observe this). When a block timeout has been
// configured via WithBlockOnFull, it instead blocks for up to that duration
// before falling back to dropping the write.
func (c *cache[V]) enqueueRedis(item redisItem[V]) {
if c.redisClient == nil || c.redisCh == nil {
return
}
// Fast path: try a non-blocking send first.
select {
case c.redisCh <- item:
return
default:
}
if c.redisBlockTimeout <= 0 {
// Drop-on-full, but account for it instead of silently losing the write.
c.droppedWrites.Add(1)
return
}
// Block briefly rather than drop immediately.
timer := time.NewTimer(c.redisBlockTimeout)
defer timer.Stop()
select {
case c.redisCh <- item:
case <-timer.C:
c.droppedWrites.Add(1)
}
}
// DroppedWrites returns the number of async Redis writes that have been dropped
// because the write-behind queue was full. A persistently non-zero and growing
// value indicates the Redis worker cannot keep up with the write rate.
func (c *cache[V]) DroppedWrites() uint64 {
return c.droppedWrites.Load()
}
// evict clears 25% of the cache if it's full.
// This prevents thrashing (add 1, delete 1, add 1, delete 1...)
func (c *cache[V]) evict() {
if c.localCapacity > 0 && len(c.items) > c.localCapacity {
// Target size is 75% of capacity
target := c.localCapacity * 3 / 4
for k := range c.items {
// Check if we need to call OnEvicted
if c.onEvicted != nil {
if v, found := c.items[k]; found {
c.onEvicted(k, v.Object)
}
}
delete(c.items, k)
if len(c.items) <= target {
break
}
}
}
}
// Add an item to the cache, replacing any existing item, using the default
// expiration.
func (c *cache[V]) SetDefault(k string, x V) {
c.Set(k, x, DefaultExpiration)
}
// Add an item to the cache only if an item doesn't already exist for the given
// key, or if the existing item has expired. Returns an error otherwise.
func (c *cache[V]) Add(k string, x V, d time.Duration) error {
c.mu.Lock()
_, found := c.get(k)
if found {
c.mu.Unlock()
return fmt.Errorf("Item %s already exists", k)
}
c.set(k, x, d)
c.mu.Unlock()
return nil
}
// Set a new value for the cache key only if it already exists, and the existing
// item hasn't expired. Returns an error otherwise.
func (c *cache[V]) Replace(k string, x V, d time.Duration) error {
c.mu.Lock()
_, found := c.get(k)
if !found {
c.mu.Unlock()
return fmt.Errorf("Item %s doesn't exist", k)
}
c.set(k, x, d)
c.mu.Unlock()
return nil
}
// Get an item from the cache. Returns the item or the zero value of V, and a FoundItem(Found,Miss,Expired) indicating
// whether the key was found.
func (c *cache[V]) Get(k string) (V, FoundItem) {
c.mu.RLock()
// "Inlining" of get and Expired
item, found := c.items[k]
if !found {
c.mu.RUnlock()
return c.getFallback(k)
}
if !item.Expiration.IsZero() {
if time.Now().After(item.Expiration) {
c.mu.RUnlock()
return c.getFallback(k)
}
}
c.mu.RUnlock()
return item.Object, Found
}
func (c *cache[V]) getFallback(k string) (V, FoundItem) {
// Try Redis
obj, ttl, found := c.fetchFromRedis(k)
if found {
c.mu.Lock()
c.setLocal(k, obj, ttl)
c.mu.Unlock()
return obj, Found
}
var zero V
return zero, Miss
}
// GetWithExpiration returns an item and its expiration time from the cache.
// It returns the item or the zero value of V, the expiration time if one is set (if the item
// never expires a zero value for time.Time is returned), and a bool indicating
// whether the key was found.
func (c *cache[V]) GetWithExpiration(k string) (V, time.Time, bool) {
c.mu.RLock()
// "Inlining" of get and Expired
item, found := c.items[k]
if !found {
c.mu.RUnlock()
return c.getFallbackWithExpiration(k)
}
if !item.Expiration.IsZero() {
if time.Now().After(item.Expiration) {
c.mu.RUnlock()
return c.getFallbackWithExpiration(k)
}
// Return the item and the expiration time
c.mu.RUnlock()
return item.Object, item.Expiration, true
}
// If expiration <= 0 (i.e. no expiration time set) then return the item
// and a zeroed time.Time
c.mu.RUnlock()
return item.Object, time.Time{}, true
}
func (c *cache[V]) getFallbackWithExpiration(k string) (V, time.Time, bool) {
// Try Redis
obj, ttl, found := c.fetchFromRedis(k)
if found {
c.mu.Lock()
c.setLocal(k, obj, ttl)
c.mu.Unlock()
var exp time.Time
if ttl > 0 {
exp = time.Now().Add(ttl)
}
return obj, exp, true
}
var zero V
return zero, time.Time{}, false
}
// Sync fetches the value for the given key from Redis (if available) and updates the local cache.
// It returns the value and an error if the key was not found in Redis or if Redis is not configured.
func (c *cache[V]) Sync(k string) (V, error) {
// Sync is an explicit read, so it bypasses write-through-only mode.
val, ttl, found := c.fetchFromRedisForce(k)
if !found {
var zero V
return zero, fmt.Errorf("item %s not found in Redis", k)
}
c.mu.Lock()
c.setLocal(k, val, ttl)
c.mu.Unlock()
return val, nil
}
// WarmFromRedis loads the given keys from Redis into the local cache. It is
// intended to be called at startup to rebuild in-memory state (e.g. dedup state)
// after a restart, so the hot path can run fully in-memory afterwards — this is
// especially useful together with WithWriteThroughOnly, which disables
// synchronous Redis reads at runtime.
//
// It returns the number of keys successfully loaded. Keys missing from Redis are
// skipped silently. An error is returned only when Redis is not configured.
func (c *cache[V]) WarmFromRedis(keys []string) (int, error) {
if c.redisClient == nil {
return 0, fmt.Errorf("redis is not configured")
}
loaded := 0
for _, k := range keys {
val, ttl, found := c.fetchFromRedisForce(k)
if !found {
continue
}
c.mu.Lock()
c.setLocal(k, val, ttl)
c.mu.Unlock()
loaded++
}
return loaded, nil
}
func (c *cache[V]) get(k string) (V, bool) {
item, found := c.items[k]
if !found || item.Expired() {
// Local miss or local expiry: try Redis
if val, ttl, ok := c.fetchFromRedis(k); ok {
c.setLocal(k, val, ttl)
return val, true
}
var zero V
return zero, false
}
return item.Object, true
}
// fetchFromRedis fetches from Redis without modifying the local cache. Safe to
// call without a lock. In write-through-only mode it short-circuits and reports
// a miss, so callers on the hot path (Get/getFallback/ModifyNumeric/SetNX) never
// perform a synchronous Redis read. Explicit reads (Sync, WarmFromRedis) use
// fetchFromRedisForce to bypass this.
func (c *cache[V]) fetchFromRedis(k string) (V, time.Duration, bool) {
if c.writeThroughOnly {
var zero V
return zero, 0, false
}
return c.fetchFromRedisForce(k)
}
// fetchFromRedisForce always reads from Redis (ignoring write-through-only mode).
// It uses a single round-trip via RedisGetTTLClient when the configured client
// supports it, otherwise it falls back to a separate Get + TTL.
func (c *cache[V]) fetchFromRedisForce(k string) (V, time.Duration, bool) {
var zero V
if c.redisClient == nil {
return zero, 0, false
}
ctx := c.ctx
var cancel context.CancelFunc
if c.redisTimeout > 0 {
ctx, cancel = context.WithTimeout(c.ctx, c.redisTimeout)
defer cancel()
}
var (
val []byte
ttl time.Duration
err error
)
if gt, ok := c.redisClient.(RedisGetTTLClient); ok {
// Single round-trip: value + remaining TTL together.
val, ttl, err = gt.GetWithTTL(ctx, k)
if err != nil {
return zero, 0, false
}
} else {
// Fallback: two round-trips for clients that don't support GetWithTTL.
val, err = c.redisClient.Get(ctx, k)
if err != nil {
return zero, 0, false
}
ttl, err = c.redisClient.TTL(ctx, k)
if err != nil {
ttl = DefaultExpiration
}
}
if ttl < 0 {
ttl = DefaultExpiration
}
var obj V
if err := json.Unmarshal(val, &obj); err != nil {
return zero, 0, false
}
return obj, ttl, true
}
func (c *cache[V]) setLocal(k string, x V, d time.Duration) {
var e time.Time
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
e = time.Now().Add(d)
}
c.items[k] = Item[V]{
Object: x,
Expiration: e,
}
c.evict()
}
// SignedInteger is a constraint for signed integer types.
type SignedInteger interface {
~int | ~int8 | ~int16 | ~int32 | ~int64
}
// UnsignedInteger is a constraint for unsigned integer types.
type UnsignedInteger interface {
~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 | ~uintptr
}
// Float is a constraint for float types.
type Float interface {
~float32 | ~float64
}
// Number is a constraint for any numeric type that supports addition and subtraction.
type Number interface {
SignedInteger | UnsignedInteger | Float
}
// ModifyNumeric atomically modifies a numeric item in the cache.
// If the item does not exist or is expired, it is set to `operand`.
// If isIncrement is true, `operand` is added to the existing value.
// If isIncrement is false, `operand` is subtracted from the existing value.
// It returns the new value and an error if the existing item is not of type N.
// This method replaces all previous Increment<Type> and Decrement<Type> methods.
type NumericCache[N Number] struct {
*cache[N]
}
// WithRedis attaches a Redis L2 layer.
func (c *NumericCache[N]) WithRedis(cli RedisClient) *NumericCache[N] {
c.withRedis(cli)
return c
}
func (c *Cache[V]) WithRedisTimeout(d time.Duration) *Cache[V] {
c.cache.withRedisTimeout(d)
return c
}
func (c *NumericCache[N]) WithRedisTimeout(d time.Duration) *NumericCache[N] {
c.cache.withRedisTimeout(d)
return c
}
func (c *cache[V]) withRedisTimeout(d time.Duration) {
c.mu.Lock()
c.redisTimeout = d
c.mu.Unlock()
}
func (c *cache[V]) withWriteThroughOnly() {
c.mu.Lock()
c.writeThroughOnly = true
c.mu.Unlock()
}
func (c *cache[V]) withBlockOnFull(d time.Duration) {
c.mu.Lock()
c.redisBlockTimeout = d
c.mu.Unlock()
}
// WithWriteThroughOnly switches the cache into "memory-authoritative" mode:
// Redis becomes a pure async write-behind layer. After warmup, the hot path
// (Get/getFallback/ModifyNumeric/SetNX) is served entirely from memory and never
// reads Redis synchronously on a local miss. Writes are still propagated to Redis
// asynchronously via the write-behind worker, and explicit reads (Sync,
// WarmFromRedis) still consult Redis.
func (c *Cache[V]) WithWriteThroughOnly() *Cache[V] {
c.cache.withWriteThroughOnly()
return c
}
// WithBlockOnFull makes async Redis enqueues block for up to d when the
// write-behind queue is full, instead of dropping the write immediately. If the
// write still cannot be enqueued within d it is dropped and counted by
// DroppedWrites. A zero or negative d restores the default drop-immediately
// behavior.
func (c *Cache[V]) WithBlockOnFull(d time.Duration) *Cache[V] {
c.cache.withBlockOnFull(d)
return c
}
// WithWriteThroughOnly enables memory-authoritative mode. See Cache.WithWriteThroughOnly.
func (c *NumericCache[N]) WithWriteThroughOnly() *NumericCache[N] {
c.cache.withWriteThroughOnly()
return c
}
// WithBlockOnFull configures blocking-on-full behavior. See Cache.WithBlockOnFull.
func (c *NumericCache[N]) WithBlockOnFull(d time.Duration) *NumericCache[N] {
c.cache.withBlockOnFull(d)
return c
}
// ModifyNumeric atomically modifies a numeric item in the cache.
// If the item does not exist or is expired, it is set to `operand`.
// If isIncrement is true, `operand` is added to the existing value.
// If isIncrement is false, `operand` is subtracted from the existing value.
// It returns the new value and an error if the existing item is not of type N.
func (c *NumericCache[N]) ModifyNumeric(k string, operand N, isIncrement bool) (N, error) {
c.mu.Lock()
item, itemFound := c.items[k]
if !itemFound || item.Expired() {
if val, ttl, ok := c.fetchFromRedis(k); ok {
c.setLocal(k, val, ttl)
item = c.items[k]
itemFound = true
}
}
// Handle cases where item is not found or is expired
if !itemFound || item.Expired() {
if itemFound && item.Expired() {
if c.onEvicted != nil {
c.onEvicted(k, item.Object)
}
}
c.set(k, operand, DefaultExpiration)
c.mu.Unlock()
return operand, nil
}
currentVal := item.Object
var newVal N
if isIncrement {
newVal = currentVal + operand
} else {
newVal = currentVal - operand
}
item.Object = newVal
c.items[k] = item
c.mu.Unlock()
// Async Redis Write
if c.redisClient != nil && c.redisCh != nil {
// Calculate remaining TTL
var d time.Duration
if !item.Expiration.IsZero() {
d = time.Until(item.Expiration)
if d <= 0 {
d = 100 * time.Millisecond // Minimum expiration for near-expired items
}
} else {
d = -1 // NoExpiration
}
c.enqueueRedis(redisItem[N]{k: k, v: newVal, d: d, op: redisOpSet})
}
return newVal, nil
}
// Incr increments a numeric item in the cache by the specified operand.
// This is a convenience method that calls ModifyNumeric with isIncrement=true.
func (c *NumericCache[N]) Incr(k string, operand N) (N, error) {
return c.ModifyNumeric(k, operand, true)
}
// Decr decrements a numeric item in the cache by the specified operand.
// This is a convenience method that calls ModifyNumeric with isIncrement=false.
func (c *NumericCache[N]) Decr(k string, operand N) (N, error) {
return c.ModifyNumeric(k, operand, false)
}
// Delete an item from the cache. Does nothing if the key is not in the cache.
func (c *cache[V]) Delete(k string) {
c.mu.Lock()
v, evicted := c.delete(k)
c.mu.Unlock()
if evicted {
c.onEvicted(k, v)
}
}
func (c *cache[V]) delete(k string) (V, bool) {
if c.onEvicted != nil {
if v, found := c.items[k]; found {
delete(c.items, k)
// Redis Async Delete
c.enqueueRedis(redisItem[V]{k: k, op: redisOpDel})
return v.Object, true
}
}
delete(c.items, k)
// Redis Async Delete (even if onEvicted is nil)
c.enqueueRedis(redisItem[V]{k: k, op: redisOpDel})
var zero V
return zero, false
}
type keyAndValue[V any] struct {
key string
value V
}
// Delete all expired items from the cache.
func (c *cache[V]) DeleteExpired() {
var evictedItems []keyAndValue[V]
now := time.Now()
c.mu.Lock()
for k, v := range c.items {
// "Inlining" of expired
if !v.Expiration.IsZero() && now.After(v.Expiration) {
ov, evicted := c.delete(k) // delete will return V, bool
if evicted {
// ov is of type V, so this is type-safe
evictedItems = append(evictedItems, keyAndValue[V]{k, ov})
}
}
}
c.mu.Unlock()
if c.onEvicted != nil {
for _, v := range evictedItems {
c.onEvicted(v.key, v.value) // v.value is of type V
}
}
}
// Sets an (optional) function that is called with the key and value when an
// item is evicted from the cache. (Including when it is deleted manually, but
// not when it is overwritten.) Set to nil to disable.
func (c *cache[V]) OnEvicted(f func(string, V)) {
c.mu.Lock()
c.onEvicted = f
c.mu.Unlock()
}
// Write the cache's items (using Gob) to an io.Writer.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
func (c *cache[V]) Save(w io.Writer) (err error) {
enc := gob.NewEncoder(w)
defer func() {
if x := recover(); x != nil {
err = fmt.Errorf("error registering item types with Gob library")
}
}()
c.mu.RLock()
defer c.mu.RUnlock()
for _, v := range c.items {
gob.Register(v.Object)
}
err = enc.Encode(&c.items)
return
}
// Save the cache's items to the given filename, creating the file if it
// doesn't exist, and overwriting it if it does.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
func (c *cache[V]) SaveFile(fname string) error {
fp, err := os.Create(fname)
if err != nil {
return err
}
err = c.Save(fp)
if err != nil {
fp.Close()
return err
}
return fp.Close()
}
// Add (Gob-serialized) cache items from an io.Reader, excluding any items with
// keys that already exist (and haven't expired) in the current cache.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
func (c *cache[V]) Load(r io.Reader) error {
dec := gob.NewDecoder(r)
items := map[string]Item[V]{}
err := dec.Decode(&items)
if err == nil {
c.mu.Lock()
defer c.mu.Unlock()
for k, v := range items {
ov, found := c.items[k]
if !found || ov.Expired() {
c.items[k] = v
}
}
}
return err
}
// Load and add cache items from the given filename, excluding any items with
// keys that already exist in the current cache.
//
// NOTE: This method is deprecated in favor of c.Items() and NewFrom() (see the
// documentation for NewFrom().)
func (c *cache[V]) LoadFile(fname string) error {
fp, err := os.Open(fname)
if err != nil {
return err
}
err = c.Load(fp)
if err != nil {
fp.Close()
return err
}
return fp.Close()
}
// Copies all unexpired items in the cache into a new map and returns it.
func (c *cache[V]) Items() map[string]Item[V] {
c.mu.RLock()
defer c.mu.RUnlock()
m := make(map[string]Item[V], len(c.items))
now := time.Now()
for k, v := range c.items {
// "Inlining" of Expired
if !v.Expiration.IsZero() {
if now.After(v.Expiration) {
continue
}
}
m[k] = v
}
return m
}
// Returns the number of items in the cache. This may include items that have
// expired, but have not yet been cleaned up.
func (c *cache[V]) ItemCount() int {
c.mu.RLock()
n := len(c.items)
c.mu.RUnlock()
return n
}
// Delete all items from the cache.
func (c *cache[V]) Flush() {
c.mu.Lock()
c.items = map[string]Item[V]{}
c.mu.Unlock()
}
type janitor[V any] struct {
Interval time.Duration
stop chan bool
}
func (j *janitor[V]) Run(c *cache[V]) {
ticker := time.NewTicker(j.Interval)
for {
select {
case <-ticker.C:
c.DeleteExpired()
case <-j.stop:
ticker.Stop()
return
}
}
}
func stopJanitor[V any](c *Cache[V]) {
c.janitor.stop <- true
}
func runJanitor[V any](c *cache[V], ci time.Duration) {
j := &janitor[V]{
Interval: ci,
stop: make(chan bool),
}
c.janitor = j
go j.Run(c)
}
func newCache[V any](de time.Duration, m map[string]Item[V]) *cache[V] {
if de == 0 {
de = -1
}
c := &cache[V]{
defaultExpiration: de,
items: m,
}
return c
}
func newCacheWithJanitor[V any](de time.Duration, ci time.Duration, m map[string]Item[V]) *Cache[V] {
c := newCache(de, m)
// This trick ensures that the janitor goroutine (which--granted it
// was enabled--is running DeleteExpired on c forever) does not keep
// the returned C object from being garbage collected. When it is
// garbage collected, the finalizer stops the janitor goroutine, after
// which c can be collected.
C := &Cache[V]{c}
if ci > 0 {
runJanitor(c, ci)
runtime.SetFinalizer(C, stopJanitor[V])
}
return C
}
// Return a new cache with a given default expiration duration and cleanup
// interval. If the expiration duration is less than one (or NoExpiration),
// the items in the cache never expire (by default), and must be deleted
// manually. If the cleanup interval is less than one, expired items are not
// deleted from the cache before calling c.DeleteExpired().
func New[V any](defaultExpiration, cleanupInterval time.Duration) *Cache[V] {
items := make(map[string]Item[V])
return newCacheWithJanitor[V](defaultExpiration, cleanupInterval, items)
}
// Configures a maximum capacity for the local in-memory cache.
// When the limit is reached, items are evicted randomly to make space.
func (c *Cache[V]) WithCapacity(cap int) *Cache[V] {
c.cache.withCapacity(cap)
return c
}
func (c *cache[V]) withCapacity(cap int) {
c.mu.Lock()
defer c.mu.Unlock()
c.localCapacity = cap
}
func (c *cache[V]) redisWorker(ch chan redisItem[V]) {
defer c.wg.Done()
for item := range ch {
if c.redisClient != nil {
switch item.op {
case redisOpSet:
// Serialize/Marshal is handled by go-redis if we pass structs?
// go-redis handles basic types. For generic V, we might need to marshal.
// But go-redis Set accepts 'any'. It uses internal formatting.
// If V is a struct, it uses fmt.Sprint by default or implements BinaryMarshaler.
// It's safer to marshal to JSON explicitly to ensure we can unmarshal back.
data, err := json.Marshal(item.v)
if err == nil {
c.redisClient.Set(c.ctx, item.k, data, item.d)
}
case redisOpSetNX:
// Best-effort async SETNX for local-authoritative SetNX.
data, err := json.Marshal(item.v)
if err == nil {
c.redisClient.SetNX(c.ctx, item.k, data, item.d)
}
case redisOpDel:
c.redisClient.Del(c.ctx, item.k)
}
}
}
}
// Close stops the background Redis worker and waits for pending operations to complete.
func (c *cache[V]) Close() {
c.mu.Lock()
defer c.mu.Unlock()
if c.redisCh != nil {
close(c.redisCh)
c.redisCh = nil
}
c.wg.Wait()
}
// Configures the cache to use a Redis client for L2 caching and async persistence.
// This also starts the async worker for Redis writes.
func (c *Cache[V]) WithRedis(cli RedisClient) *Cache[V] {
c.cache.withRedis(cli)
return c
}