GetMultiWithError fetches multiple keys at once from a cache and returns an error if the operation failed. It may return both results and an error if there are only partial failures. One or more Option instances may be passed to modify the behavior of this GetMultiWithError call.
(ctx context.Context, keys []string, opts ...Option)
| 34 | // failures. One or more Option instances may be passed to modify the |
| 35 | // behavior of this GetMultiWithError call. |
| 36 | GetMultiWithError(ctx context.Context, keys []string, opts ...Option) (map[string][]byte, error) |
| 37 | |
| 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. |
no outgoing calls