Store marshals and stores the contents of the specified value under key. If the key already exists, its contents are replaced.
(ctx context.Context, key string, value []byte)
| 401 | // Store marshals and stores the contents of the specified value under key. |
| 402 | // If the key already exists, its contents are replaced. |
| 403 | Store(ctx context.Context, key string, value []byte) error |
| 404 | |
| 405 | // Remove removes the specified key from the store. If the key does not exist, |
| 406 | // Remove reports success (nil). |
no outgoing calls