in syncedlru.go [83:91]
func (lru *SyncedLRU[K, V]) Get(key K) (value V, ok bool) { hash := lru.lru.hash(key) lru.mu.Lock() value, ok = lru.lru.get(hash, key) lru.mu.Unlock() return }