Crates.io | redis-cli |
lib.rs | redis-cli |
version | 0.3.1 |
source | src |
created_at | 2016-02-14 14:41:47.257474 |
updated_at | 2016-06-04 04:24:11.557887 |
description | Redis CLI. |
homepage | https://github.com/iorust/redis-cli |
repository | https://github.com/iorust/redis-cli.git |
max_upload_size | |
id | 4177 |
size | 32,675 |
Redis CLI.
git clone https://github.com/iorust/redis-cli.git && cd redis-cli && cargo build --release
target/release/redis-cli -h 127.0.0.1 -p 6379
More help:
target/release/redis-cli --help
extern crate redis_cli;
// exports:
use redis_cli::{create_client, Client, COMMANDS, Value, encode_slice, Decoder};
Re-exports from the https://github.com/iorust/resp
fn create_client(host: &str, port: u16, password: &str, db: u16) -> io::Result<Client>
let mut client = create_client("127.0.0.1", 6379, "", 0).expect("Failed to connect");
client.cmd(&["set", "test", "hello!"]).unwrap();
struct Client {
// some fields omitted
}
fn new<A: ToSocketAddrs>(addrs: A) -> io::Result<Client>
let mut client = Client::new((hostname, port));
fn cmd(&mut self, slice: &[&str]) -> Result<Value>
client.cmd(&["get", "test"]).unwrap(); // Value::String("hello!")
fn read_more(&mut self) -> Result<Value>
Some commands will have one more replies. This method use to read them.
client.read_more().unwrap();
https://github.com/iorust/redis-cli/blob/master/src/command.rs