Options which can be adjusted when using a batched atomic.
These all default to the current values used by Deno, so typically these never need to be set unless you specifically know what you are doing!
Deno KV limits the number of checks per atomic transaction. This changes the default of 99.
maxMutations: number
Deno KV limits the number of mutations per atomic transactions. This changes the default of 999.
Deno KV limits the overall byte size of an atomic transaction, which includes data for checks and mutations. This changes the default of 800k.
There is also the limit of 64K per value.
maxKeyBytes: number
Deno KV limits the total byte size of keys associated with an atomic transaction. This changes the default of 80k.