redismodule
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"
'''