Get gets the value for the given key. It returns ErrKeyNotFound if the DB does not contain the key. It's thread-safe. It is safe to modify the contents of the returned value. See GetResponse for the details.
(ctx context.Context, key string)
| 164 | // does not contain the key. It's thread-safe. It is safe to modify the contents |
| 165 | // of the returned value. See GetResponse for the details. |
| 166 | Get(ctx context.Context, key string) (*GetResponse, error) |
| 167 | |
| 168 | // Delete deletes values for the given keys. Delete will not return error |
| 169 | // if key doesn't exist. It's thread-safe. It is safe to modify the contents |
no outgoing calls