vaikzs / vmemcached-rs

Rust memcached client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vmemcached

CI

vmemcached is a memcached client written in pure Rust.

Install

The crate is called vmemcached and you can depend on it via cargo:

[dependencies]
vmemcached = "0.4"

Features

  • ASCII protocol
  • Key interpreted as slice of u8 (bytes)
  • Value is accepted as implementing Serialize and is stored as JSON using serde_json crate
  • Not supported: increment/decrement/append/prepend/gets operations due to JSON and compression
  • Feature: "compress" enable Brotli encoding/decoding
  • Tokio
  • bb8 async connection pool
  • Nom for parsing memcached ASCII protocol

Development

To start:

make test

License

MIT

About

Rust memcached client

License:MIT License


Languages

Language:Rust 98.9%Language:Makefile 0.9%Language:Shell 0.2%