Load fetches the contents of the specified key. If the key is not found in the store, Load must report [ErrKeyNotFound].
(ctx context.Context, key string)
| 397 | // Load fetches the contents of the specified key. |
| 398 | // If the key is not found in the store, Load must report [ErrKeyNotFound]. |
| 399 | Load(ctx context.Context, key string) ([]byte, error) |
| 400 | |
| 401 | // Store marshals and stores the contents of the specified value under key. |
| 402 | // If the key already exists, its contents are replaced. |
no outgoing calls