GetRevision returns a specific revision value for the key. If the key does not exist or the provided revision does not exists, ErrKeyNotFound will be returned.
(ctx context.Context, key string, revision uint64)
| 98 | // does not exist or the provided revision does not exists, |
| 99 | // ErrKeyNotFound will be returned. |
| 100 | GetRevision(ctx context.Context, key string, revision uint64) (KeyValueEntry, error) |
| 101 | |
| 102 | // Put will place the new value for the key into the store. If the key |
| 103 | // does not exist, it will be created. If the key exists, the value will |
no outgoing calls