mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 20:07:38 +03:00
freelru: Fix GetAndRefreshOrAdd
This commit is contained in:
parent
be9840c70f
commit
4dabb9be97
5 changed files with 23 additions and 17 deletions
|
@ -121,11 +121,14 @@ func (lru *SyncedLRU[K, V]) GetAndRefresh(key K) (value V, ok bool) {
|
|||
return
|
||||
}
|
||||
|
||||
func (lru *SyncedLRU[K, V]) GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (value V, updated bool) {
|
||||
func (lru *SyncedLRU[K, V]) GetAndRefreshOrAdd(key K, constructor func() (V, bool)) (value V, updated bool, ok bool) {
|
||||
hash := lru.lru.hash(key)
|
||||
|
||||
lru.mu.Lock()
|
||||
value, updated = lru.lru.getAndRefreshOrAdd(hash, key, constructor)
|
||||
value, updated, ok = lru.lru.getAndRefreshOrAdd(hash, key, constructor)
|
||||
if !updated && ok {
|
||||
lru.lru.PurgeExpired()
|
||||
}
|
||||
lru.mu.Unlock()
|
||||
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue