freelru: Add PeekWithLifetime and UpdateLifetime

This commit is contained in:
世界 2024-11-26 11:29:14 +08:00
parent c8f251c668
commit 3613ead480
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
4 changed files with 117 additions and 23 deletions

View file

@ -55,6 +55,10 @@ type Cache[K comparable, V any] interface {
// 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)
UpdateLifetime(key K, value V, lifetime time.Duration) bool
// Contains checks for the existence of a key, without changing its recent-ness.
// If the found entry is already expired, the evict function is called.
Contains(key K) bool