Get returns the latest value for the key. If the key does not exist, ErrKeyNotFound will be returned.
(ctx context.Context, key string)
| 93 | // Get returns the latest value for the key. If the key does not exist, |
| 94 | // ErrKeyNotFound will be returned. |
| 95 | Get(ctx context.Context, key string) (KeyValueEntry, error) |
| 96 | |
| 97 | // GetRevision returns a specific revision value for the key. If the key |
| 98 | // does not exist or the provided revision does not exists, |
no outgoing calls