Deno.KvConsistencyLevel

UNSTABLE: New API, yet to be vetted.

Consistency level of a KV operation.

  • strong - This operation must be strongly-consistent.
  • eventual - Eventually-consistent behavior is allowed.
type KvConsistencyLevel = "strong" | "eventual";

§Type

§
"strong" | "eventual"
[src]