memcache-async

Build Status Codecov Status Crates.io MIT licensed Docs

memcache-async is an async memcached client implementation.

Install

The crate is called memcache-async and you can depend on it via cargo:

ini [dependencies] memcache-async = "0.5"

Features

The crate implements the protocol on any stream implementing AsyncRead + AsyncWrite.

Basic usage

The crate works with byte slices for values, the caller should implement deserialization if desired. See examples for usage. E.g. after start a memcached instance locally, the following example code could be run:

bash cargo run --example tcp-simple 127.0.0.1:11211

License

MIT