Get retrieves data from the cache, returning whether it was found
(key string, dest interface{})
| 18 | type Cache interface { |
| 19 | // Get retrieves data from the cache, returning whether it was found |
| 20 | Get(key string, dest interface{}) (bool, error) |
| 21 | |
| 22 | // Set stores data in the cache with optional TTL |
| 23 | Set(key string, data interface{}, ttl time.Duration) error |
no outgoing calls