memcache 0.0.11

memcached client for rust
Documentation

rust-memcache

Build Status Crates.io

Memcached client for rust.

Usage

// create connection
let mut conn = memcache::connection::connect("127.0.0.1:12345").unwrap();

// flush the database
conn.flush().unwrap();

// set a string value with expire time
conn.set("foo", "bar", 42).unwrap();
// retrie from memcached
let value: String = conn.get("foo").unwrap();
assert!(value == "bar");

// set a int value with immortal expire
conn.set("number", 42.to_string(), 0).unwrap();
// retire it as i32
let value: i32 = conn.get("number").unwrap();
assert!(value == 42);

TODO

  • Ascii protocal
  • Binary protocal
  • Multi server support
  • Typed interface
  • Documents

License

MIT