mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
freelru: Fix GetAndRefreshOrAdd
This commit is contained in:
parent
be9840c70f
commit
4dabb9be97
5 changed files with 23 additions and 17 deletions
|
@ -54,7 +54,7 @@ type Cache[K comparable, V comparable] interface {
|
|||
// 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)
|
||||
GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (V, bool, 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.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue