| Crates.io | wasmcloud-redis |
| lib.rs | wasmcloud-redis |
| version | 0.11.3 |
| created_at | 2021-02-11 18:15:44.394363+00 |
| updated_at | 2021-05-18 20:43:02.676699+00 |
| description | Redis capability provider for the wasmCloud WebAssembly actor runtime |
| homepage | https://wasmcloud.dev |
| repository | https://github.com/wasmcloud/capability-providers |
| max_upload_size | |
| id | 353881 |
| size | 28,928 |
The wasmCloud Redis capability provider exposes an implementation of the key-value store interface built using Redis. Each actor module within a host runtime will be given its own unique Redis client connection. The following configuration parameters are accepted:
URL - The connection string URL. This will default to redis://0.0.0.0:6379 if a configuration is supplied without this value.If you want to statically link (embed) this plugin in a custom wasmCloud host rather than use it as a dynamic plugin, then enable the static_plugin feature in your dependencies section as shown:
wasmcloud-redis = { version = "0.9.0", features = ["static_plugin"] }