14 releases

0.4.2 Jan 28, 2020
0.4.1 Dec 19, 2018
0.4.0 Nov 15, 2018
0.3.0 Jul 13, 2018
0.0.4 Mar 26, 2015

#143 in Caching

Download history 457/week @ 2023-12-11 447/week @ 2023-12-18 270/week @ 2023-12-25 496/week @ 2024-01-01 222/week @ 2024-01-08 186/week @ 2024-01-15 148/week @ 2024-01-22 139/week @ 2024-01-29 159/week @ 2024-02-05 226/week @ 2024-02-12 161/week @ 2024-02-19 186/week @ 2024-02-26 127/week @ 2024-03-04 189/week @ 2024-03-11 210/week @ 2024-03-18 166/week @ 2024-03-25

700 downloads per month
Used in aries

MIT/Apache

135KB
3.5K SLoC

memcached-rs

Build Status crates.io dependency status

Memcached library in Rust

Usage

use std::collections::TreeMap;

use memcached::Client;
use memcached::proto::{Operation, MultiOperation, NoReplyOperation, CasOperation, ProtoType};

fn main() {
    let servers = [
        ("tcp://127.0.0.1:11211", 1),
    ];
    let mut client = Client::connect(&servers, ProtoType::Binary).unwrap();

    client.set(b"Foo", b"Bar", 0xdeadbeef, 2).unwrap();
    let (value, flags) = client.get(b"Foo").unwrap();
    assert_eq!(value.as_slice(), b"Bar");
    assert_eq!(flags, 0xdeadbeef);

    client.set_noreply(b"key:dontreply", b"1", 0x00000001, 20).unwrap();

    let (_, cas_val) = client.increment_cas(b"key:numerical", 10, 1, 20, 0).unwrap();
    client.increment_cas(b"key:numerical", 1, 1, 20, cas_val).unwrap();
}

Run cargo doc --open for more details.

SASL authentication

TCP connections support PLAIN SASL authentication:

use memcached::proto::{Operation, ProtoType};
use memcached::Client;

fn main() {
    let servers = [
        ("tcp://my-sasl-memcached-server.com:11211", 1)
    ];
    let mut client = Client::connect_sasl(&servers, ProtoType::Binary, "my-username", "my-password").unwrap();

    client.set(b"Foo", b"Bar", 0xdeadbeef, 2).unwrap();
    let (value, flags) = client.get(b"Foo").unwrap();
    assert_eq!(&value[..], b"Bar");
    assert_eq!(flags, 0xdeadbeef);
}

TODO

  • Auto-disable failed servers

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1MB
~20K SLoC