Method
Set
(key string, value *Stmt)
Source from the content-addressed store, hash-verified
| 130 | } |
| 131 | |
| 132 | func (s *lruStore) Set(key string, value *Stmt) { |
| 133 | s.lru.Add(key, value) |
| 134 | } |
| 135 | |
| 136 | func (s *lruStore) Delete(key string) { |
| 137 | s.lru.Remove(key) |
Tested by
no test coverage detected