SetAsync enqueues an operation to store a key into a cache. In case the underlying operation fails, the error will be tracked/logged.
(key string, value []byte, ttl time.Duration)
| 38 | // SetAsync enqueues an operation to store a key into a cache. In case the underlying |
| 39 | // operation fails, the error will be tracked/logged. |
| 40 | SetAsync(key string, value []byte, ttl time.Duration) |
| 41 | |
| 42 | // SetMultiAsync enqueues operations to store a keys and values into a cache. In case |
| 43 | // any underlying async operations fail, the errors will be tracked/logged. |
no outgoing calls