mirror of
https://github.com/go-micro/go-micro.git
synced 2024-11-24 08:02:32 +02:00
use read lock and unlock instead of write ones (#2410)
Co-authored-by: Amir Khazaie <a.khazaie@digikala.com>
This commit is contained in:
parent
696a0ba714
commit
ef7528ebdb
4
cache/default.go
vendored
4
cache/default.go
vendored
@ -20,8 +20,8 @@ func (c *memCache) Context(ctx context.Context) Cache {
|
||||
}
|
||||
|
||||
func (c *memCache) Get(key string) (interface{}, time.Time, error) {
|
||||
c.RWMutex.Lock()
|
||||
defer c.RWMutex.Unlock()
|
||||
c.RWMutex.RLock()
|
||||
defer c.RWMutex.RUnlock()
|
||||
|
||||
item, found := c.items[key]
|
||||
if !found {
|
||||
|
Loading…
Reference in New Issue
Block a user