8 unstable releases (3 breaking)

Uses old Rust 2015

0.3.1 Jun 4, 2016
0.3.0 Mar 5, 2016
0.2.2 Mar 4, 2016
0.2.0 Feb 20, 2016
0.0.1 Feb 14, 2016

#2729 in Database interfaces

32 downloads per month

MIT/Apache

20KB
388 lines

redis-cli

Redis CLI.

Crates version Build Status Coverage Status Crates downloads

Build

git clone https://github.com/iorust/redis-cli.git && cd redis-cli && cargo build --release

Run

target/release/redis-cli -h 127.0.0.1 -p 6379

More help:

target/release/redis-cli --help

Use as a crate

extern crate redis_cli;
// exports:
use redis_cli::{create_client, Client, COMMANDS, Value, encode_slice, Decoder};

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();

Client

struct Client {
    // some fields omitted
}

impl Client

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();

COMMANDS

https://github.com/iorust/redis-cli/blob/master/src/command.rs

Dependencies

~565KB
~10K SLoC