6 releases

0.3.2 May 4, 2024
0.3.1 Apr 6, 2024
0.3.0 Mar 31, 2024
0.2.0 Sep 26, 2023
0.1.0 Aug 13, 2020

#9 in #connection-manager

Download history 9/week @ 2024-02-19 14/week @ 2024-02-26 5/week @ 2024-03-04 1/week @ 2024-03-11 282/week @ 2024-04-01 21/week @ 2024-04-08 13/week @ 2024-04-22 154/week @ 2024-04-29 9/week @ 2024-05-06 9/week @ 2024-05-13 51/week @ 2024-05-20

224 downloads per month

MIT/Apache

79KB
1.5K SLoC

Deadpool for Memcached Latest Version Rust 1.75+

Deadpool is a dead simple async pool for connections and objects of any type.

This crate implements a deadpool manager for async-memcached.

Example

use deadpool_memcached::Manager;

#[tokio::main]
async fn main() {
    let manager = Manager::new("localhost:11211");
    let mut client = pool.get().await.unwrap();
    println!("version: {:?}", client.version().await);
}

License

Licensed under the MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT).


lib.rs:

Deadpool for Memcache

Deadpool is a dead simple async pool for connections and objects of any type.

This crate implements a deadpool manager for async-memcached. We specifically force users to connect via TCP as there is no existing mechanism to parameterize how to deal with different unerlying connection types at the moment.

Dependencies

~5–14MB
~154K SLoC