Set stores data in the cache with optional TTL
(key string, data interface{}, ttl time.Duration)
| 21 | |
| 22 | // Set stores data in the cache with optional TTL |
| 23 | Set(key string, data interface{}, ttl time.Duration) error |
| 24 | |
| 25 | // Delete removes an item from the cache |
| 26 | Delete(key string) error |
no outgoing calls