Easy-to-use beanstalkd client for Rust (IronMQ compatible)
Add this dependency to your Cargo.toml
beanstalkd = "~0.0.0"
```rs extern crate beanstalkd;
use beanstalkd::{Connection, Tube};
let connection = Connection::new("localhost", 11300).unwrap(); let mut tube = Tube::new(connection, "default"); tube.put(b"Hello World \n This is a new line!", 0, 0, 10000); ```
```rs extern crate beanstalkd;
use beanstalkd::{Connection, Tube};
let connection = Connection::new("localhost", 11300).unwrap(); let mut tube = Tube::new(connection, "default"); match tube.reserve().unwrap() { Some((id, body)) => tube.delete(id), None => {}, }; ```
rs
// TODO