Cache interface
| 7 | |
| 8 | // Cache interface |
| 9 | type Cache interface { |
| 10 | Get(key string) interface{} |
| 11 | Set(key string, val interface{}, timeout time.Duration) error |
| 12 | IsExist(key string) bool |
| 13 | Delete(key string) error |
| 14 | } |
| 15 | |
| 16 | // ContextCache interface |
| 17 | type ContextCache interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…