mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
127 lines
2.6 KiB
Go
127 lines
2.6 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package cache
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/luxfi/container/linked"
|
|
"github.com/luxfi/utils"
|
|
)
|
|
|
|
var _ Cacher[struct{}, any] = (*sizedLRU[struct{}, any])(nil)
|
|
|
|
// sizedLRU is a key value store with bounded size. If the size is attempted to
|
|
// be exceeded, then elements are removed from the cache until the bound is
|
|
// honored, based on evicting the least recently used value.
|
|
type sizedLRU[K comparable, V any] struct {
|
|
lock sync.Mutex
|
|
elements *linked.Hashmap[K, V]
|
|
maxSize int
|
|
currentSize int
|
|
size func(K, V) int
|
|
}
|
|
|
|
func NewSizedLRU[K comparable, V any](maxSize int, size func(K, V) int) Cacher[K, V] {
|
|
return &sizedLRU[K, V]{
|
|
elements: linked.NewHashmap[K, V](),
|
|
maxSize: maxSize,
|
|
size: size,
|
|
}
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) Put(key K, value V) {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
c.put(key, value)
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) Get(key K) (V, bool) {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
return c.get(key)
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) Evict(key K) {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
c.evict(key)
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) Flush() {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
c.flush()
|
|
}
|
|
|
|
func (c *sizedLRU[_, _]) Len() int {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
return c.len()
|
|
}
|
|
|
|
func (c *sizedLRU[_, _]) PortionFilled() float64 {
|
|
c.lock.Lock()
|
|
defer c.lock.Unlock()
|
|
|
|
return c.portionFilled()
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) put(key K, value V) {
|
|
newEntrySize := c.size(key, value)
|
|
if newEntrySize > c.maxSize {
|
|
c.flush()
|
|
return
|
|
}
|
|
|
|
if oldValue, ok := c.elements.Get(key); ok {
|
|
c.currentSize -= c.size(key, oldValue)
|
|
}
|
|
|
|
// Remove elements until the size of elements in the cache <= [c.maxSize].
|
|
for c.currentSize > c.maxSize-newEntrySize {
|
|
oldestKey, oldestValue, _ := c.elements.Oldest()
|
|
c.elements.Delete(oldestKey)
|
|
c.currentSize -= c.size(oldestKey, oldestValue)
|
|
}
|
|
|
|
c.elements.Put(key, value)
|
|
c.currentSize += newEntrySize
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) get(key K) (V, bool) {
|
|
value, ok := c.elements.Get(key)
|
|
if !ok {
|
|
return utils.Zero[V](), false
|
|
}
|
|
|
|
c.elements.Put(key, value) // Mark [k] as MRU.
|
|
return value, true
|
|
}
|
|
|
|
func (c *sizedLRU[K, _]) evict(key K) {
|
|
if value, ok := c.elements.Get(key); ok {
|
|
c.elements.Delete(key)
|
|
c.currentSize -= c.size(key, value)
|
|
}
|
|
}
|
|
|
|
func (c *sizedLRU[K, V]) flush() {
|
|
c.elements.Clear()
|
|
c.currentSize = 0
|
|
}
|
|
|
|
func (c *sizedLRU[_, _]) len() int {
|
|
return c.elements.Len()
|
|
}
|
|
|
|
func (c *sizedLRU[_, _]) portionFilled() float64 {
|
|
return float64(c.currentSize) / float64(c.maxSize)
|
|
}
|