Crate redis_client [] [src]

A redis client implemented in Rust. It's create is called "redis-client".

Connection

All the clients are created with a host and a port:

try!(client::new("127.0.0.1", "6379"));

They are trying to connect when they are created and the new method return a Result with either the client or a RedisError.

The clients

There is more than one client in the library.

RedisClient

It is used to execute redis commands synchronously.

For example:

let result: String = try!(client.set("key", "value"));

RedisClientAsync

It is used to execute redis commands synchronously.

For example:

try!(async_client.get("key", |result| {
   let result_value: String  = match result {
       Ok(value) => value.into(),
       Err(err) => err.to_string(),
   };
   println!("{:?}", result_value);
}));

To get the callback to be called once the command execution is over, the pump method needs to be called.

PubSubClientAsync

It is used for redis Pub/Sub functionnality.

For example:

try!(pubsub_client.subscribe("foo", |cmd_result| {
        let cmd_result_value: String  = match cmd_result {
            Ok(value) => value.into(),
            Err(err) => err.to_string(),
        };
        println!("{:?}", cmd_result_value);
    }, |received_value| {
        println!("{:?}", received_value);
    }
));

try!(pubsub_client.publish("foo", "message", |cmd_result| {
        let cmd_result_value: String  = match cmd_result {
            Ok(value) => value.into(),
            Err(err) => err.to_string(),
        };
        println!("{:?}", cmd_result_value);
    }
));

The first closure in every method is the one that will be called once the command execution ends. For the subscription methods, the second closure which is the subscription callback, will be called once a value is received on the required channels. To trigger these calls, the pump method needs to be called. (NOTE: as multiple value may be received between two calls of the pump method, a subscription callback may be triggered more than once when te pump method is called.)

Commands

Built-in Commands

They are the redis commands implemented in the traits CommandBuilder to build a RedisCommand, or in CommandSender and CommandSenderAsync to send them.

For example:

let cmd = &mut redis_client::RedisCommand::new();
cmd.get("key");
 
let result: String = try!(client.exec_redis_command(cmd)).into();
 
try!(async_client.exec_redis_command_async(cmd, |result| {
   let result_value: String  = match result {
       Ok(value) => value.into(),
       Err(err) => err.to_string(),
   };
   println!("{:?}", result_value);
}));

Is the same as:

let result: String = try!(client.get("key"));
 
try!(async_client.get("key", |result| {
   let result_value: String  = match result {
       Ok(value) => value.into(),
       Err(err) => err.to_string(),
   };
   println!("{:?}", result_value);
}));

Some redis commands can have an argument with one or more values. For these ones the rules is to implement two built-in commands, one for the single value case that have the name of the redis commands and another for the multiple values case with the same name but prefixed by a m.

For example:

let result: String = try!(client.del("key"));
 
let mresult: String = try!(client.mdel(vec!["key1", "key2"]));

Another rule is when a redis commands has behavioral arguments, extra built-in commands are created. For example:

let result: String = try!(client.setxx("key", "value")); // SET command with the XX argument

In the case a behavioral argument is mandatory, only the built-in commands with the arguments are created. For example lindex has an argument that is either AFTER or BEFORE:

let aresult: String = try!(client.linsert_after("key", "pivot", "value")); // LINSERT with AFTER has an argument
let bresult: String = try!(client.linsert_before("key", "pivot", "value")); // LINSERT  with BEFORE has an argument
// let eresult: String = try!(client.linsert("key", "pivot", "value")); DOES NOT EXIST

Custom Commands

It is also possible to build custom command and execute them.

For example:

let cmd = &mut redis_client::RedisCommand::new();
cmd.add_cmd("GET").add_arg("key").end();
 
let result: String = try!(client.exec_redis_command(cmd)).into();
 
try!(async_client.exec_redis_command_async(cmd, |result| {
   let result_value: String  = match result {
       Ok(value) => value.into(),
       Err(err) => err.to_string(),
   };
   println!("{:?}", result_value);
}));

Pipeline

To execute a command pipeline you simply need to create a RedisCommand with one or more redis commands and execute it with a client's pipeline method. The only difference with the execution of a single command is that the Result contains a vector of RedisResult instead of just a RedisResult.

Example:

let cmd = &mut redis_client::RedisCommand::new();
cmd.set("key", "value2").get("key");
 
let results = try!(client.exec_redis_pipeline_command(cmd)); // results is a Vec<RedisResult>
 
try!(async_client.exec_redis_pipeline_command_async(cmd, |results| {
    match results {
        Ok(values) => {
            for value in values {
                println!("{:?}", value.convert::<String>())
            }
        },
        Err(err) => println!("{:?}", err.to_string()),
    };
}));

Redis Transaction

The transaction commands are part of the built-in commands and therefore can be used like any other commmands.

Reexports

pub use errors::ParsingError;
pub use errors::RedisError;
pub use redis::PubSubClientAsync;
pub use redis::RedisClient;
pub use redis::RedisClientAsync;
pub use results::RedisResult;
pub use commands::CommandBuilder;
pub use commands::CommandSender;
pub use commands::CommandSenderAsync;
pub use commands::PubSubCommandAsync;
pub use commands::RedisCommand;

Modules

commands
errors
reader
redis
results
types