This crate provides an idiomatic Rust API for the Valkey Modules API. It allows writing Valkey modules in Rust, without needing to use raw pointers or unsafe code. See here for the most recent API documentation.
This repo was forked from redismodule-rs. We appreciate the contributions of the original authors.
- Install Rust
- Install Valkey, most likely using your favorite package manager (Homebrew on Mac, APT or YUM on Linux)
- Run
cargo build --example hello
- Start a valkey server with the
hello
module- Linux:
valkey-server --loadmodule ./target/debug/examples/libhello.so
- Mac:
valkey-server --loadmodule ./target/debug/examples/libhello.dylib
- Linux:
- Open a valkey-cli, and run
HELLO.MUL 31 11
.
See the examples directory for some sample modules.
To optionally enter the System.alloc
code paths in alloc.rs
specify this in Cargo.toml
of your module:
[features]
enable-system-alloc = ["valkey-module/system-alloc"]
For unit tests with System.alloc
use this:
cargo test --features enable-system-alloc
For integration tests with ValkeyAlloc
use this:
cargo test
This crate tries to provide high-level wrappers around the standard Valkey Modules API, while preserving the API's basic concepts. Therefore, following the Valkeyi Modules API documentation will be mostly relevant here as well.