(keyValues map[string]interface{})
| 75 | } |
| 76 | |
| 77 | func (p *concurrentLruCacheImp) SetMultiple(keyValues map[string]interface{}) { |
| 78 | p.lock.Lock() |
| 79 | defer p.lock.Unlock() |
| 80 | |
| 81 | for key, value := range keyValues { |
| 82 | p.cache.Set(key, value) |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | func (p *concurrentLruCacheImp) Delete(keys ...string) { |
| 87 | p.lock.Lock() |