GetWithContext gets the value for the given key with a context. `nil, nil` is returned when the key does not exist
(ctx context.Context, key string)
| 11 | // GetWithContext gets the value for the given key with a context. |
| 12 | // `nil, nil` is returned when the key does not exist |
| 13 | GetWithContext(ctx context.Context, key string) ([]byte, error) |
| 14 | |
| 15 | // Get gets the value for the given key. |
| 16 | // `nil, nil` is returned when the key does not exist |
no outgoing calls