v0.1.0 · World
imports
The `wasmcloud:keyvalue/imports` world provides common APIs for interacting with key-value stores. Components targeting this world will be able to do: 1. CRUD (create, read, update, delete) operations on key-value stores, with optional per-entry expiry and conditional writes. 2. Atomic `increment` operations, and compare-and-swap (CAS) via the `cas` interface. 3. Batch operations that can reduce the number of round trips to the network.
Imports
I
store
IA keyvalue interface that provides eventually consistent key-value operations.
atomics
IA keyvalue interface that provides atomic operations.
cas
IA keyvalue interface that provides compare-and-swap (optimistic concurrency) for a single key.
batch
A keyvalue interface that provides batch operations.