5 unstable releases

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

#8 in #connection-manager

Download history 9/week @ 2024-02-18 11/week @ 2024-02-25 7/week @ 2024-03-03 2/week @ 2024-03-10 208/week @ 2024-03-31 85/week @ 2024-04-07

293 downloads per month

MIT/Apache

77KB
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

~4–16MB
~161K SLoC