(key string, value interface{})
| 68 | } |
| 69 | |
| 70 | func (p *concurrentLruCacheImp) Set(key string, value interface{}) { |
| 71 | p.lock.Lock() |
| 72 | defer p.lock.Unlock() |
| 73 | |
| 74 | p.cache.Set(key, value) |
| 75 | } |
| 76 | |
| 77 | func (p *concurrentLruCacheImp) SetMultiple(keyValues map[string]interface{}) { |
| 78 | p.lock.Lock() |