Exist return true if value cached by given key
(key string)
| 8 | type Cache interface { |
| 9 | // Exist return true if value cached by given key |
| 10 | Exists(key string) (bool, error) |
| 11 | // Get returns value by given key |
| 12 | Get(key string) (interface{}, error) |
| 13 | // GetString returns value string format by given key |
no outgoing calls