-
Notifications
You must be signed in to change notification settings - Fork 3
/
fifo_map.go
63 lines (53 loc) · 1.42 KB
/
fifo_map.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
package shardmap
type FIFOMap[K hashable, V any] struct {
internalMap *ShardedMap[K, V]
queue chan K
maxSize int
currentSize int
}
// NewFIFOMap returns a FIFO map that internally uses the sharded map. It keeps count of all the items
// inserted, and when we exceed the size, values will be evicted using the FIFO (first in, first out) policy.
func NewFIFOMap[K hashable, V any](size, shards int, hashFn HashFn[K]) *FIFOMap[K, V] {
return &FIFOMap[K, V]{
internalMap: NewShardedMap[K, V](size, shards, hashFn),
queue: make(chan K, size*2),
maxSize: size,
currentSize: 0,
}
}
func (m *FIFOMap[K, V]) Get(key K) (V, bool) {
return m.internalMap.Get(key)
}
func (m *FIFOMap[K, V]) Put(key K, val V) {
if !m.internalMap.Has(key) {
// If we're about to exceed max size, remove first value from the map
if m.currentSize >= m.maxSize {
f := <-m.queue
m.internalMap.Del(f)
m.currentSize--
}
m.internalMap.Put(key, val)
m.queue <- key
m.currentSize++
} else {
m.internalMap.Put(key, val)
}
}
func (m *FIFOMap[K, V]) Has(key K) bool {
return m.internalMap.Has(key)
}
func (m *FIFOMap[K, V]) Del(key K) {
if m.internalMap.Has(key) {
m.internalMap.Del(key)
m.currentSize--
}
}
func (m *FIFOMap[K, V]) Len() int {
return m.currentSize
}
func (m *FIFOMap[K, V]) Keys() []K {
return m.internalMap.Keys()
}
func (m *FIFOMap[K, V]) Iter() <-chan KVPair[K, V] {
return m.internalMap.Iter()
}