mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
Add freelru.GetWithLifetimeNoExpire
This commit is contained in:
parent
ea0ac932ae
commit
ea82ac275f
4 changed files with 41 additions and 0 deletions
|
@ -108,6 +108,16 @@ func (lru *SyncedLRU[K, V]) GetWithLifetime(key K) (value V, lifetime time.Time,
|
|||
return
|
||||
}
|
||||
|
||||
func (lru *SyncedLRU[K, V]) GetWithLifetimeNoExpire(key K) (value V, lifetime time.Time, ok bool) {
|
||||
hash := lru.lru.hash(key)
|
||||
|
||||
lru.mu.Lock()
|
||||
value, lifetime, ok = lru.lru.getWithLifetimeNoExpire(hash, key)
|
||||
lru.mu.Unlock()
|
||||
|
||||
return
|
||||
}
|
||||
|
||||
// GetAndRefresh returns the value associated with the key, setting it as the most
|
||||
// recently used item.
|
||||
// The lifetime of the found cache item is refreshed, even if it was already expired.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue