Crates.io | worker-kv |
lib.rs | worker-kv |
version | 0.8.0 |
source | src |
created_at | 2021-03-21 18:13:59.938134 |
updated_at | 2024-09-25 14:48:15.351834 |
description | Rust bindings to Cloudflare Worker KV Stores. |
homepage | |
repository | https://github.com/cloudflare/workers-rs |
max_upload_size | |
id | 371797 |
size | 22,665 |
Rust bindings to Cloudflare Worker KV Stores using wasm-bindgen and js-sys.
let kv = KvStore::create("Example")?; // or KvStore::from_this(&this, "Example") if using modules format Workers
// Insert a new entry into the kv.
kv.put("example_key", "example_value")?
.metadata(vec![1, 2, 3, 4]) // Use some arbitrary serialiazable metadata
.execute()
.await?;
// NOTE: kv changes can take a minute to become visible to other workers.
// Get that same metadata.
let (value, metadata) = kv.get("example_key").text_with_metadata::<Vec<usize>>().await?;
For a more complete example check out the full example.
There currently is not a way to use a Future natively from WebAssembly but with the future_to_promise function from wasm_bindgen_futures we can convert it to a standard JavaScript promise, which can be awaited in the regular JavaScript context.