mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add freelru.SetUpdateLifetimeOnGet/GetWithLifetime
This commit is contained in:
parent
ae139d9ee1
commit
7f621fdd78
5 changed files with 60 additions and 21 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue