-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcache.go
800 lines (738 loc) · 20.1 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
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
package goramcache
import (
"encoding/gob"
"fmt"
"io"
"math"
"os"
"reflect"
"regexp"
"sync"
"time"
"github.com/sonnt85/gosyncutils"
)
type Item[T any] struct {
Object T
Expiration int64
}
// Returns true if the item has expired.
func (item Item[T]) Expired() bool {
return (item.Expiration != 0) && (time.Now().UnixNano() > item.Expiration)
}
const (
NoExpirationCheck time.Duration = -1
// 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 NewCache() or
// NewCacheFrom() when the cache was created (e.g. 5 minutes.)
DefaultExpiration time.Duration = 0
)
type cache[K comparable, T any] struct {
errorAllowTimeExpiration int64
defaultExpiration time.Duration
items map[K]Item[T]
mu sync.RWMutex
onEvicted func(K, T)
eventDeleteItem *gosyncutils.EventOpject[struct{}]
}
type Cache[K comparable, T any] struct {
*cache[K, T]
janitor *Janitor
}
// 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.
//
//go:inline
func (c *cache[K, T]) Set(k K, x T, d time.Duration) {
// "Inlining" of set
var e int64
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
e = time.Now().Add(d).UnixNano()
}
c.mu.Lock()
c.items[k] = Item[T]{
Object: x,
Expiration: e,
}
c.mu.Unlock()
}
//go:inline
func (c *cache[K, T]) set(k K, x T, d time.Duration) {
var e int64
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
e = time.Now().Add(d).UnixNano()
}
c.items[k] = Item[T]{
Object: x,
Expiration: e,
}
}
// Add an item to the cache, replacing any existing item, using the default
// expiration.
func (c *cache[K, T]) SetDefault(k K, x T) {
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[K, T]) Add(k K, x T, d time.Duration) error {
c.mu.Lock()
_, found := c.get(k)
if found {
c.mu.Unlock()
return fmt.Errorf("Item %+v already exists", k)
}
c.set(k, x, d)
c.mu.Unlock()
return nil
}
func (c *cache[K, T]) Edit(k K, x interface{}, apFunc func(T, interface{}) (T, error)) error { //TODO update to run
c.mu.Lock()
v, found := c.items[k]
if !found || v.Expired() {
c.mu.Unlock()
return fmt.Errorf("Item %+v not found", k)
}
edited, err := apFunc(v.Object, x)
if err == nil {
v.Object = edited
c.items[k] = v
}
c.mu.Unlock()
return err
}
// 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[K, T]) Replace(k K, x T, d time.Duration) error {
c.mu.Lock()
_, found := c.get(k)
if !found {
c.mu.Unlock()
return fmt.Errorf("Item %+v doesn't exist", k)
}
c.set(k, x, d)
c.mu.Unlock()
return nil
}
// Get an item from the cache. Returns the item or nil, and a bool indicating
// whether the key was found.
func (c *cache[K, T]) Get(k K) (T, bool) {
var zero T
c.mu.RLock()
// "Inlining" of get and Expired
item, found := c.items[k]
if !found {
c.mu.RUnlock()
return zero, false
}
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
c.mu.RUnlock()
return zero, false
}
}
c.mu.RUnlock()
return item.Object, true
}
// Get an item from the cache. Returns the item or nil, and a bool indicating
// whether the key was found.
func (c *cache[K, T]) GetRandom() (key K, val T, b bool) {
c.mu.RLock()
key, val, b = c.getrandom()
c.mu.RUnlock()
return
}
func (c *cache[K, T]) GetRandomThenDelete() (key K, val T, b bool) {
c.mu.Lock()
key, val, b = c.getrandom()
if b {
if _, ok := c.delete(key); ok {
c.onEvicted(key, val)
}
}
c.mu.Unlock()
return
}
func (c *cache[K, T]) GetThenDelete(k K) (T, bool) {
c.mu.Lock()
t, ok := c.get(k)
if ok {
if _, ok := c.delete(k); ok {
c.onEvicted(k, t)
}
}
c.mu.Unlock()
return t, ok
}
func (c *cache[K, T]) GetOrCreateNew(k K) (T, bool) {
c.mu.RLock()
if v, ok := c.get(k); ok {
c.mu.Unlock()
return v, false
} else {
var zero T
value := reflect.ValueOf(zero)
if value.Kind() == reflect.Pointer {
// value.Elem()
newvalue := reflect.New(value.Elem().Type())
zero = reflect.ValueOf(newvalue.Addr()).Interface().(T)
}
c.mu.Unlock()
c.SetDefault(k, zero)
return zero, true
}
}
// GetWithExpirationUpdate returns item and updates its cache expiration time
// It returns the item or nil, 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[K, T]) GetWithExpirationUpdate(k K, d time.Duration) (T, bool) {
var zero T
c.mu.RLock()
item, found := c.items[k]
if !found {
c.mu.RUnlock()
return zero, false
}
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
c.mu.RUnlock()
return zero, false
}
}
c.mu.RUnlock()
c.mu.Lock()
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
item.Expiration = time.Now().Add(d).UnixNano()
}
c.items[k] = item
c.mu.Unlock()
return item.Object, true
}
func (c *cache[K, T]) GetWithDefaultExpirationUpdate(k K) (T, bool) {
return c.GetWithExpirationUpdate(k, DefaultExpiration)
}
// Keys returns a sorted slice of all the keys in the cache.
func (c *cache[K, T]) Keys() []K {
var i int
c.mu.RLock()
keys := make([]K, len(c.items))
for k := range c.items {
keys[i] = k
i++
}
c.mu.RUnlock()
// keys = slide.Sort(keys)
// slice.Sort(keys)
return keys
}
func (c *cache[K, T]) Values() []T {
var i int
now := time.Now().UnixNano()
c.mu.RLock()
values := make([]T, len(c.items))
for _, v := range c.items {
if v.Expiration > 0 && now > v.Expiration {
continue
}
values[i] = v.Object
i++
}
c.mu.RUnlock()
return values
}
func (c *cache[K, T]) Length() int {
c.mu.RLock()
defer c.mu.RUnlock()
return len(c.items)
}
// GetMultipleItems returns an array of items corresponding to the input array
func (c *cache[K, T]) GetMultipleItems(keys []K) []T {
length := len(keys)
var items = make([]T, length)
c.mu.RLock()
for i := 0; i < length; i++ {
item, _ := c.get(keys[i])
items[i] = item
}
c.mu.RUnlock()
return items
}
func (c *cache[K, T]) IncrementExpiration(k K, d time.Duration) error {
c.mu.Lock()
v, found := c.items[k]
if !found || v.Expired() {
c.mu.Unlock()
return fmt.Errorf("key %+v not found.", k)
}
var e int64
if d == DefaultExpiration {
d = c.defaultExpiration
}
if d > 0 {
e = time.Now().Add(d).UnixNano()
}
v.Expiration = e
c.mu.Unlock()
return nil
}
// GetWithExpiration returns an item and its expiration time from the cache.
// It returns the item or nil, 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[K, T]) GetWithExpiration(k K) (T, time.Time, bool) {
var zero T
c.mu.RLock()
// "Inlining" of get and Expired
item, found := c.items[k]
if !found {
c.mu.RUnlock()
return zero, time.Time{}, false
}
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
c.mu.RUnlock()
return zero, time.Time{}, false
}
// Return the item and the expiration time
c.mu.RUnlock()
return item.Object, time.Unix(0, 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[K, T]) get(k K) (T, bool) {
item, found := c.items[k]
var zero T
if !found {
return zero, false
}
// "Inlining" of Expired
if item.Expiration > 0 {
if time.Now().UnixNano() > item.Expiration {
return zero, false
}
}
return item.Object, true
}
//go:inline
func (c *cache[K, T]) getrandom() (key K, val T, b bool) {
var item Item[T]
for key, item = range c.items {
if (item.Expiration <= 0) || (time.Now().UnixNano() <= item.Expiration) {
val = item.Object
b = true
break
}
}
return
}
// Increment and return an item of type int, int8, int16, int32, int64, uintptr, uint,
// uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the
// item's value is not an integer, if it was not found, or if it is not
// possible to increment it by n.
func (c *cache[K, T]) Increment(k K, n int64) (T, error) {
// TODO: Consider adding a constraint to avoid the type switch and provide
// compile-time safety
var zero T
c.mu.Lock()
v, found := c.items[k]
if !found || v.Expired() {
c.mu.Unlock()
return zero, fmt.Errorf("Item %+v not found", k)
}
// Generics does not (currently?) support type switching
// To workaround, we convert the value into a interface{}, and switching on that
var untypedValue interface{}
untypedValue = v.Object
switch untypedValue.(type) {
case int:
untypedValue = untypedValue.(int) + int(n)
case int8:
untypedValue = untypedValue.(int8) + int8(n)
case int16:
untypedValue = untypedValue.(int16) + int16(n)
case int32:
untypedValue = untypedValue.(int32) + int32(n)
case int64:
untypedValue = untypedValue.(int64) + n
case uint:
untypedValue = untypedValue.(uint) + uint(n)
case uintptr:
untypedValue = untypedValue.(uintptr) + uintptr(n)
case uint8:
untypedValue = untypedValue.(uint8) + uint8(n)
case uint16:
untypedValue = untypedValue.(uint16) + uint16(n)
case uint32:
untypedValue = untypedValue.(uint32) + uint32(n)
case uint64:
untypedValue = untypedValue.(uint64) + uint64(n)
case float32:
untypedValue = untypedValue.(float32) + float32(n)
case float64:
untypedValue = untypedValue.(float64) + float64(n)
default:
c.mu.Unlock()
return zero, fmt.Errorf("The value for %+v is not an integer", k)
}
v.Object = untypedValue.(T)
c.items[k] = v
c.mu.Unlock()
return zero, nil
}
// Decrement and return an item of type int, int8, int16, int32, int64, uintptr, uint,
// uint8, uint32, or uint64, float32 or float64 by n. Returns an error if the
// item's value is not an integer, if it was not found, or if it is not
// possible to decrement it by n.
func (c *cache[K, T]) Decrement(k K, n int64) (T, error) {
// TODO: Consider adding a constraint to avoid the type switch and provide
// compile-time safety
c.mu.Lock()
var zero T
v, found := c.items[k]
if !found || v.Expired() {
c.mu.Unlock()
return zero, fmt.Errorf("Item %+v not found", k)
}
// Generics does not (currently?) support type switching
// To workaround, we convert the value into a interface{}, and switching on that
var untypedValue interface{}
untypedValue = v.Object
switch untypedValue.(type) {
case int:
untypedValue = untypedValue.(int) - int(n)
case int8:
untypedValue = untypedValue.(int8) - int8(n)
case int16:
untypedValue = untypedValue.(int16) - int16(n)
case int32:
untypedValue = untypedValue.(int32) - int32(n)
case int64:
untypedValue = untypedValue.(int64) - n
case uint:
untypedValue = untypedValue.(uint) - uint(n)
case uintptr:
untypedValue = untypedValue.(uintptr) - uintptr(n)
case uint8:
untypedValue = untypedValue.(uint8) - uint8(n)
case uint16:
untypedValue = untypedValue.(uint16) - uint16(n)
case uint32:
untypedValue = untypedValue.(uint32) - uint32(n)
case uint64:
untypedValue = untypedValue.(uint64) - uint64(n)
case float32:
untypedValue = untypedValue.(float32) - float32(n)
case float64:
untypedValue = untypedValue.(float64) - float64(n)
default:
c.mu.Unlock()
return zero, fmt.Errorf("The value for %+v is not an integer", k)
}
v.Object = untypedValue.(T)
c.items[k] = v
c.mu.Unlock()
return zero, nil
}
// Delete an item from the cache. Does nothing if the key is not in the cache.
func (c *cache[K, T]) Delete(k K) {
c.mu.Lock()
v, evicted := c.delete(k)
c.mu.Unlock()
if evicted {
c.onEvicted(k, v)
}
}
func (c *cache[K, T]) DeleteRegex(rule string) {
var str string
var ok bool
re, _ := regexp.Compile(rule)
for k := range c.items {
str, ok = any(k).(string)
if !ok {
continue
}
if re.MatchString(str) {
c.Delete(k)
}
}
}
// delete item and return item Object and onevicted bool
func (c *cache[K, T]) delete(k K) (T, bool) {
var zero T
if c.onEvicted != nil {
if v, found := c.items[k]; found {
delete(c.items, k)
return v.Object, true
}
}
delete(c.items, k)
c.eventDeleteItem.SendBroacast()
return zero, false
}
type keyAndValue[K comparable, T any] struct {
key K
value T
}
// Delete all expired items from the cache.
func (c *cache[K, T]) DeleteExpired() {
var evictedItems []keyAndValue[K, T]
now := time.Now().UnixNano()
c.mu.Lock()
for k, v := range c.items {
// "Inlining" of expired
if v.Expiration > 0 && ((now + c.errorAllowTimeExpiration) > v.Expiration) {
ov, evicted := c.delete(k)
if evicted {
evictedItems = append(evictedItems, keyAndValue[K, T]{k, ov})
}
}
}
c.mu.Unlock()
for _, v := range evictedItems {
c.onEvicted(v.key, v.value)
}
}
// Delete all expired items from the cache, call by janitor
func (c *cache[K, T]) deleteExpired() (nextTimeCheck time.Time, needUpdate bool) {
var evictedItems []keyAndValue[K, T]
var minExpiration int64
now := time.Now().UnixNano()
minExpiration = math.MaxInt64
c.mu.Lock()
for k, v := range c.items {
if v.Expiration > 0 {
if (now + c.errorAllowTimeExpiration) > v.Expiration {
ov, evicted := c.delete(k)
if evicted {
evictedItems = append(evictedItems, keyAndValue[K, T]{k, ov})
}
} else {
if v.Expiration < minExpiration {
minExpiration = v.Expiration
}
}
}
}
needUpdate = len(c.items) != 0
nextTimeCheck = time.UnixMicro(minExpiration / 1000)
c.mu.Unlock()
for _, v := range evictedItems {
c.onEvicted(v.key, v.value)
}
return
}
// 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[K, T]) OnEvicted(f func(K, T)) {
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[K, T]) Save(w io.Writer) (err error) {
enc := gob.NewEncoder(w)
defer func() {
if x := recover(); x != nil {
err = fmt.Errorf("Error Encode item 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[K, T]) 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[K, T]) Load(r io.Reader) error {
dec := gob.NewDecoder(r)
items := map[K]Item[T]{}
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[K, T]) 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()
}
// Iterate every item by item handle items from cache,and if the handle returns to false,
// it will be interrupted and return false.
func (c *cache[K, T]) Iterate(f func(key K, item T) bool) bool {
now := time.Now().UnixNano()
c.mu.RLock()
keys := make([]K, len(c.items))
i := 0
for k, v := range c.items {
// "Inlining" of Expired
if v.Expiration > 0 && now > v.Expiration {
continue
}
keys[i] = k
i++
}
c.mu.RUnlock()
keys = keys[:i]
for _, key := range keys {
c.mu.RLock()
item, ok := c.items[key]
c.mu.RUnlock()
if !ok {
continue
}
if !f(key, item.Object) {
return false
}
}
return true
}
// Copies all unexpired items in the cache into a new map and returns it.
func (c *cache[K, T]) Items() map[K]Item[T] {
c.mu.RLock()
defer c.mu.RUnlock()
m := make(map[K]Item[T], len(c.items))
now := time.Now().UnixNano()
for k, v := range c.items {
if v.Expiration > 0 {
if now > 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[K, T]) ItemCount() int {
c.mu.RLock()
n := len(c.items)
c.mu.RUnlock()
return n
}
// Delete all items from the cache.
func (c *cache[K, T]) Flush() {
c.mu.Lock()
c.items = map[K]Item[T]{}
c.mu.Unlock()
}
func (c *Cache[K, T]) SetNextCheckExpireate(d time.Duration) {
c.janitor.SetNextCheckExpire(d)
}
func newcache[K comparable, T any](de, errorAllowTimeExpiration time.Duration, m map[K]Item[T]) *cache[K, T] {
if de == 0 {
de = -1
}
c := &cache[K, T]{
errorAllowTimeExpiration: errorAllowTimeExpiration.Nanoseconds(),
defaultExpiration: de,
items: m,
eventDeleteItem: gosyncutils.NewEventOpject[struct{}](),
}
return c
}
func newCache[K comparable, T any](de time.Duration, errorAllowTimeExpiration time.Duration, m map[K]Item[T]) *Cache[K, T] {
c := newcache(de, errorAllowTimeExpiration, m)
C := &Cache[K, T]{
cache: c,
}
if errorAllowTimeExpiration > 0 {
C.janitor = NewJanitor(errorAllowTimeExpiration)
C.janitor.Start(c, c.deleteExpired)
}
return C
}
// Return a new cache with a given default expiration duration (defaultExpiration) 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 errorAllowTimeExpiration is less than one, expired items are not
// deleted from the cache before calling c.DeleteExpired().
func NewCache[K comparable, T any](defaultExpiration, errorAllowTimeExpiration time.Duration) *Cache[K, T] {
items := make(map[K]Item[T])
return newCache[K, T](defaultExpiration, errorAllowTimeExpiration, items)
}
// 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().
//
// NewFrom() also accepts an items map which will serve as the underlying map
// for the cache. This is useful for starting from a deserialized cache
// (serialized using e.g. gob.Encode() on c.Items()), or passing in e.g.
// make(map[string]Item, 500) to improve startup performance when the cache
// is expected to reach a certain minimum size.
//
// Only the cache's methods synchronize access to this map, so it is not
// recommended to keep any references to the map around after creating a cache.
// If need be, the map can be accessed at a later point using c.Items() (subject
// to the same caveat.)
//
// Note regarding serialization: When using e.g. gob, make sure to
// gob.Register() the individual types stored in the cache before encoding a
// map retrieved with c.Items(), and to register those same types before
// decoding a blob containing an items map.
func NewCacheFrom[K comparable, T any](defaultExpiration, errorAllowTimeExpiration time.Duration, items map[K]Item[T]) *Cache[K, T] {
return newCache(defaultExpiration, errorAllowTimeExpiration, items)
}