freelru: Update source and add GetAndRefreshOrAdd

This commit is contained in:
世界 2024-11-28 13:14:16 +08:00
parent 0a2e2a3eaf
commit 6edd2ce0ea
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 652 additions and 73 deletions

View file

@ -19,19 +19,17 @@ package freelru
import "time"
type Cache[K comparable, V any] interface {
type Cache[K comparable, V comparable] interface {
// SetLifetime sets the default lifetime of LRU elements.
// Lifetime 0 means "forever".
SetLifetime(lifetime time.Duration)
SetUpdateLifetimeOnGet(update bool)
SetHealthCheck(healthCheck HealthCheckCallback[K, V])
// SetOnEvict sets the OnEvict callback function.
// The onEvict function is called for each evicted lru entry.
SetOnEvict(onEvict OnEvictCallback[K, V])
SetHealthCheck(healthCheck HealthCheckCallback[K, V])
// Len returns the number of elements stored in the cache.
Len() int
@ -49,13 +47,20 @@ type Cache[K comparable, V any] interface {
// and the return value indicates that the key was not found.
Get(key K) (V, bool)
GetWithLifetime(key K) (value V, lifetime time.Time, ok bool)
GetWithLifetime(key K) (V, time.Time, bool)
// GetAndRefresh returns the value associated with the key, setting it as the most
// recently used item.
// The lifetime of the found cache item is refreshed, even if it was already expired.
GetAndRefresh(key K) (V, bool)
GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (V, bool)
// Peek looks up a key's value from the cache, without changing its recent-ness.
// If the found entry is already expired, the evict function is called.
Peek(key K) (V, bool)
PeekWithLifetime(key K) (value V, lifetime time.Time, ok bool)
PeekWithLifetime(key K) (V, time.Time, bool)
UpdateLifetime(key K, value V, lifetime time.Duration) bool