Create a new server KV store client.
Port of ServerKvClient::new() from server/kv.rs lines 39-46.
Base URL of the Hubert server (e.g., "http://127.0.0.1:45678")
Store an envelope at the given ARID.
Port of KvStore::put() implementation from server/kv.rs lines 67-122.
OptionalttlSeconds: numberOptionalverbose: booleanRetrieve an envelope for the given ARID.
Port of KvStore::get() implementation from server/kv.rs lines 124-212.
OptionaltimeoutSeconds: numberOptionalverbose: booleanCheck if an envelope exists at the given ARID.
Port of KvStore::exists() implementation from server/kv.rs lines 214-218.
Server-backed key-value store using HTTP API.
This implementation communicates with a Hubert server via HTTP POST requests.
Port of
struct ServerKvClientfrom server/kv.rs lines 6-37.Example