faineance / redismodule

Write Redis modules in Rust (WIP)
MIT License
1 stars 0 forks source link

redismodule Crates.io

Write Redis modules in Rust.

Documentation

Running the example

'''bash $ cd example && cargo build $ redis-server --loadmodule ./target/debug/libexample.so $ echo "array hello world 123" | redis-cli
1) (integer) 4 2) "array" 3) "hello" 4) "world" 5) "123"

'''