GetMulti fetches multiple keys at once from a cache. In case of error, an empty map is returned and the error tracked/logged. One or more Option instances may be passed to modify the behavior of this GetMulti call.
(ctx context.Context, keys []string, opts ...Option)
| 28 | // an empty map is returned and the error tracked/logged. One or more Option |
| 29 | // instances may be passed to modify the behavior of this GetMulti call. |
| 30 | GetMulti(ctx context.Context, keys []string, opts ...Option) map[string][]byte |
| 31 | |
| 32 | // GetMultiWithError fetches multiple keys at once from a cache and returns an error |
| 33 | // if the operation failed. It may return both results and an error if there are only partial |
no outgoing calls