SetMultiAsync enqueues operations to store a keys and values into a cache. In case any underlying async operations fail, the errors will be tracked/logged.
(data map[string][]byte, ttl time.Duration)
| 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. |
| 44 | SetMultiAsync(data map[string][]byte, ttl time.Duration) |
| 45 | |
| 46 | // Set stores a key and value into a cache. |
| 47 | Set(ctx context.Context, key string, value []byte, ttl time.Duration) error |
no outgoing calls