mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-03 11:57:39 +03:00
freelru: Fix impl
This commit is contained in:
parent
fcb19641e6
commit
11ffb962ae
1 changed files with 3 additions and 3 deletions
|
@ -439,11 +439,11 @@ func (lru *LRU[K, V]) add(hash uint32, key K, value V) (evicted bool) {
|
||||||
// If the found cache item is already expired, the evict function is called
|
// If the found cache item is already expired, the evict function is called
|
||||||
// and the return value indicates that the key was not found.
|
// and the return value indicates that the key was not found.
|
||||||
func (lru *LRU[K, V]) Get(key K) (value V, ok bool) {
|
func (lru *LRU[K, V]) Get(key K) (value V, ok bool) {
|
||||||
return lru.get(lru.hash(key), key, true)
|
return lru.get(lru.hash(key), key)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (lru *LRU[K, V]) get(hash uint32, key K, updateLifetime bool) (value V, ok bool) {
|
func (lru *LRU[K, V]) get(hash uint32, key K) (value V, ok bool) {
|
||||||
if pos, ok := lru.findKey(hash, key, updateLifetime); ok {
|
if pos, ok := lru.findKey(hash, key, true); ok {
|
||||||
if pos != lru.head {
|
if pos != lru.head {
|
||||||
lru.unlinkElement(pos)
|
lru.unlinkElement(pos)
|
||||||
lru.setHead(pos)
|
lru.setHead(pos)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue