Store puts value at key. It creates the key if it does not exist and overwrites any existing value at this key.
(ctx context.Context, key string, value []byte)
| 76 | // Store puts value at key. It creates the key if it does |
| 77 | // not exist and overwrites any existing value at this key. |
| 78 | Store(ctx context.Context, key string, value []byte) error |
| 79 | |
| 80 | // Load retrieves the value at key. |
| 81 | Load(ctx context.Context, key string) ([]byte, error) |
no outgoing calls