docs.rs failed to build memcache-0.0.6
Please check build logs and if you believe this is docs.rs' fault, report into this issue report.
Please check build logs and if you believe this is docs.rs' fault, report into this issue report.
rust-memcache
Memcached client for rust.
Usage
let mut conn = Connection::connect("localhost", 2333).unwrap();
conn.set("foo", b"bar", 0).unwrap();
assert!{ conn.get("foo").unwrap().unwrap().as_slice() == b"bar" };
License
MIT