paper-client 1.11.0

The Rust PaperCache client.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# paper-client-rs

The Rust [PaperCache](https://papercache.io) client. The client supports all commands described in the wire protocol on the homepage.

## Example
```rust
use paper_client::PaperClient;

let mut client = PaperClient::new("paper://127.0.0.1:3145")?;

client.set("hello", "world", None)?;
let got = client.get("hello")?;
```