mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-11-02 01:12:10 +08:00
fix: lru lock
This commit is contained in:
parent
3a45679378
commit
de20311c4b
@ -99,7 +99,6 @@ func (x *LayLRU[K, V]) GetBatch(keys []K, fetch func(keys []K) (map[K]V, error))
|
|||||||
queries := make([]K, 0)
|
queries := make([]K, 0)
|
||||||
setVs := make(map[K]*layLruItem[V])
|
setVs := make(map[K]*layLruItem[V])
|
||||||
for _, key := range keys {
|
for _, key := range keys {
|
||||||
x.lock.Unlock()
|
|
||||||
v, ok := x.core.Get(key)
|
v, ok := x.core.Get(key)
|
||||||
x.lock.Unlock()
|
x.lock.Unlock()
|
||||||
if ok {
|
if ok {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user