mirror of
https://github.com/luxfi/node.git
synced 2026-07-27 03:39:39 +00:00
74 lines
1.6 KiB
Go
74 lines
1.6 KiB
Go
// Copyright (C) 2019-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package metercacher
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/luxfi/metric"
|
|
|
|
"github.com/luxfi/node/cache"
|
|
)
|
|
|
|
var _ cache.Cacher[struct{}, struct{}] = (*Cache[struct{}, struct{}])(nil)
|
|
|
|
type Cache[K comparable, V any] struct {
|
|
cache.Cacher[K, V]
|
|
|
|
metrics *cacheMetrics
|
|
}
|
|
|
|
func New[K comparable, V any](
|
|
namespace string,
|
|
registry metric.Registry,
|
|
cache cache.Cacher[K, V],
|
|
) (*Cache[K, V], error) {
|
|
metrics, err := newMetrics(namespace, registry)
|
|
return &Cache[K, V]{
|
|
Cacher: cache,
|
|
metrics: metrics,
|
|
}, err
|
|
}
|
|
|
|
func (c *Cache[K, V]) Put(key K, value V) {
|
|
start := time.Now()
|
|
c.Cacher.Put(key, value)
|
|
putDuration := time.Since(start)
|
|
|
|
c.metrics.putCount.Inc()
|
|
c.metrics.putTime.Add(float64(putDuration))
|
|
c.metrics.len.Set(float64(c.Cacher.Len()))
|
|
c.metrics.portionFilled.Set(c.Cacher.PortionFilled())
|
|
}
|
|
|
|
func (c *Cache[K, V]) Get(key K) (V, bool) {
|
|
start := time.Now()
|
|
value, has := c.Cacher.Get(key)
|
|
getDuration := time.Since(start)
|
|
|
|
if has {
|
|
c.metrics.getCount.With(hitLabels).Inc()
|
|
c.metrics.getTime.With(hitLabels).Add(float64(getDuration))
|
|
} else {
|
|
c.metrics.getCount.With(missLabels).Inc()
|
|
c.metrics.getTime.With(missLabels).Add(float64(getDuration))
|
|
}
|
|
|
|
return value, has
|
|
}
|
|
|
|
func (c *Cache[K, _]) Evict(key K) {
|
|
c.Cacher.Evict(key)
|
|
|
|
c.metrics.len.Set(float64(c.Cacher.Len()))
|
|
c.metrics.portionFilled.Set(c.Cacher.PortionFilled())
|
|
}
|
|
|
|
func (c *Cache[_, _]) Flush() {
|
|
c.Cacher.Flush()
|
|
|
|
c.metrics.len.Set(float64(c.Cacher.Len()))
|
|
c.metrics.portionFilled.Set(c.Cacher.PortionFilled())
|
|
}
|