(key, value []byte)
| 3 | // Cache - cache interface used to store and retrieve serialized data |
| 4 | type Cache interface { |
| 5 | Set(key, value []byte) error |
| 6 | Get(key []byte) ([]byte, error) |
| 7 | GetAllValues() ([][]byte, error) |
| 8 | GetAllEntries() (map[string][]byte, error) |
no outgoing calls