Create will add the key/value pair if it does not exist. If the key already exists, ErrKeyExists will be returned. A key has to consist of alphanumeric characters, dashes, underscores, equal signs, and dots.
(ctx context.Context, key string, value []byte, opts ...KVCreateOpt)
| 121 | // A key has to consist of alphanumeric characters, dashes, underscores, |
| 122 | // equal signs, and dots. |
| 123 | Create(ctx context.Context, key string, value []byte, opts ...KVCreateOpt) (uint64, error) |
| 124 | |
| 125 | // Update will update the value if the latest revision matches. |
| 126 | // If the provided revision is not the latest, Update will return an error. |
no outgoing calls