From 11ffb962aec1ea57c119c8d4614ef09c43efb414 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=96=E7=95=8C?= Date: Sat, 9 Nov 2024 11:36:22 +0800 Subject: [PATCH] freelru: Fix impl --- contrab/freelru/lru.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrab/freelru/lru.go b/contrab/freelru/lru.go index 045cc3e..5a1ceb6 100644 --- a/contrab/freelru/lru.go +++ b/contrab/freelru/lru.go @@ -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 // and the return value indicates that the key was not found. 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) { - if pos, ok := lru.findKey(hash, key, updateLifetime); ok { +func (lru *LRU[K, V]) get(hash uint32, key K) (value V, ok bool) { + if pos, ok := lru.findKey(hash, key, true); ok { if pos != lru.head { lru.unlinkElement(pos) lru.setHead(pos)