#actor #wasmcloud #api-bindings

wasmcloud-actor-keyvalue

Interface to the key-value contract for use by wasmCloud Actors

3 releases

0.2.2 Apr 16, 2021
0.2.1 Feb 17, 2021
0.2.0 Feb 10, 2021

#1521 in WebAssembly

Download history 24/week @ 2024-01-01 77/week @ 2024-01-08 58/week @ 2024-01-15 39/week @ 2024-01-22 39/week @ 2024-01-29 26/week @ 2024-02-05 49/week @ 2024-02-12 47/week @ 2024-02-19 93/week @ 2024-02-26 57/week @ 2024-03-04 129/week @ 2024-03-11 105/week @ 2024-03-18 97/week @ 2024-03-25 164/week @ 2024-04-01 131/week @ 2024-04-08 122/week @ 2024-04-15

514 downloads per month
Used in 5 crates (4 directly)

Apache-2.0

19KB
398 lines

crates.io  Rust license  documentation

wasmCloud Key Value Store Actor Interface

This crate provides an interface for actors to use to communicate with a key-value store capability provider. Actors using this interface must have the wasmcloud:keyvalue capability permission.

This crate is one-way, and only supports actors making calls to the host. The capability provider does not deliver messages to actors (e.g. actors cannot subscribe to store change events).

The following is an example usage:

#[macro_use]
extern crate serde_json;
extern crate wasmcloud_actor_http_server as http;
extern crate wasmcloud_actor_keyvalue as kv;
extern crate wasmcloud_actor_core as actor;

use http::{self, Request, Response};
use wascap_guest::HandlerResult;

#[macro_use]
extern crate serde_json;

#[actor::init]
pub fn init() {
    http::Handlers::register_handle_request(increment_counter);
}

fn increment_counter(msg: Request) -> HandlerResult<Response> {
    let key = msg.path.replace('/', ":");
    let resp = kv::default().add(key.to_string(), 1)?;

    let result = json!({"counter": resp.value });
    Ok(Response::json(result, 200, "OK")?)
}

Dependencies

~1.2–2MB
~45K SLoC