* fix:log

* fix: lock
This commit is contained in:
icey-yu 2024-09-13 10:44:42 +08:00 committed by GitHub
parent 9424e3ed5f
commit 9c92fbb8a9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -94,11 +94,11 @@ func (x *LayLRU[K, V]) GetBatch(keys []K, fetch func(keys []K) (map[K]V, error))
once sync.Once
)
x.lock.Lock()
res := make(map[K]V)
queries := make([]K, 0)
setVs := make(map[K]*layLruItem[V])
for _, key := range keys {
x.lock.Lock()
v, ok := x.core.Get(key)
x.lock.Unlock()
if ok {