FastCache - cache interface used to store and retrieve any data type which requires no serialization
| 2 | |
| 3 | // FastCache - cache interface used to store and retrieve any data type which requires no serialization |
| 4 | type FastCache interface { |
| 5 | Set(key, value interface{}) error |
| 6 | Get(key interface{}) (interface{}, bool) |
| 7 | GetAllEntries() (map[interface{}]interface{}, error) |
| 8 | RecordsCount() (int, error) |
| 9 | DeleteData() error |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected