Set sets a value in the cache with the given key
(key string, value interface{})
| 9 | type Cacheable interface { |
| 10 | // Set sets a value in the cache with the given key |
| 11 | Set(key string, value interface{}) |
| 12 | |
| 13 | // Get gets a value from the cache with the given key |
| 14 | Get(key string) (interface{}, bool) |
no outgoing calls