Add freelru.SetUpdateLifetimeOnGet/GetWithLifetime

This commit is contained in:
世界 2024-11-14 12:29:09 +08:00
parent ae139d9ee1
commit 7f621fdd78
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
5 changed files with 60 additions and 21 deletions

View file

@ -24,6 +24,8 @@ type Cache[K comparable, V any] interface {
// Lifetime 0 means "forever".
SetLifetime(lifetime time.Duration)
SetUpdateLifetimeOnGet(update bool)
SetHealthCheck(healthCheck HealthCheckCallback[K, V])
// SetOnEvict sets the OnEvict callback function.
@ -47,6 +49,8 @@ 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)
// 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)