Crates.io | paper-client |
lib.rs | paper-client |
version | 1.10.2 |
created_at | 2025-07-07 05:32:28.121815+00 |
updated_at | 2025-07-15 07:41:56.898404+00 |
description | The Rust PaperCache client. |
homepage | https://papercache.io |
repository | https://github.com/PaperCache/paper-client-rs.git |
max_upload_size | |
id | 1740787 |
size | 108,726 |
The Rust PaperCache client. The client supports all commands described in the wire protocol on the homepage.
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")?;