mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
freelru: Add PeekWithLifetime
and UpdateLifetime
This commit is contained in:
parent
c8f251c668
commit
3613ead480
4 changed files with 117 additions and 23 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue