mirror of https://github.com/status-im/consul.git
docs: clarify transaction usage and limitations in kv api docs
This commit is contained in:
parent
021537c837
commit
8529a23e59
|
@ -18,14 +18,16 @@ replication between datacenters, please view the
|
|||
|
||||
~> Values in the KV store cannot be larger than 512kb.
|
||||
|
||||
For multi-key updates, please consider using [transaction](/api/txn).
|
||||
In order to perform atomic operations on multiple KV pairs (up to a limit of 64)
|
||||
please consider using [transactions](/api/txn) instead.
|
||||
|
||||
## Read Key
|
||||
|
||||
This endpoint returns the specified key. If no key exists at the given path, a
|
||||
404 is returned instead of a 200 response.
|
||||
|
||||
For multi-key reads, please consider using [transaction](/api/txn).
|
||||
For multi-key reads (up to a limit of 64) please consider using
|
||||
[transactions](/api/txn) instead.
|
||||
|
||||
| Method | Path | Produces |
|
||||
| ------ | ---------- | ------------------ |
|
||||
|
|
Loading…
Reference in New Issue