Disque CLI.
git clone https://github.com/iorust/disque-cli.git && cd disque-cli && cargo build --release
target/release/disque-cli -h 127.0.0.1 -p 7711
More help:
target/release/disque-cli --help
extern crate disque_cli;
// exports:
use disque_cli::{create_client, Client, COMMANDS, Value, encode_slice, Decoder};
Re-exports from the https://github.com/iorust/resp
let mut client = create_client("127.0.0.1", 7711, "").expect("Failed to connect");
client.cmd(&["hello"]).unwrap();
struct Client {
// some fields omitted
}
let mut client = Client::new((hostname, port));
client.cmd(&["addjob", "test", "hello, world!", "100"]).unwrap(); // Value::String("hello!")
Some commands will have one more replies. This method use to read them.
client.read_more().unwrap();
https://github.com/iorust/disque-cli/blob/master/src/command.rs