Get returns result for key, If there's no such key existing in cache, ErrNoSuchKey will be returned.
(key string)
| 28 | // If there's no such key existing in cache, |
| 29 | // ErrNoSuchKey will be returned. |
| 30 | Get(key string) (bool, error) |
| 31 | |
| 32 | // Delete will remove the specific key in cache. |
| 33 | // If there's no such key existing in cache, |
no outgoing calls