2 releases
0.1.2 | Sep 13, 2020 |
---|---|
0.1.0 | Aug 13, 2020 |
#7 in #memcached
4KB
Deadpool for Memcached 
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
~5MB
~87K SLoC