Deadpool Latest Version Build Status

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

This crate provides two implementations:

Features

| Feature | Description | Extra dependencies | Default | | ------- | ----------- | ------------------ | ------- | | managed | Enable managed pool implementation | – | yes | | unmanaged | Enable unmanaged pool implementation | async-trait | yes | | config | Enable support for config crate | config, serde/derive | yes |

Managed pool (aka. connection pool)

This is the obvious choice for connection pools of any kind. Deadpool already comes with a couple of database connection pools which work out of the box.

Example

```rust use asynctrait::asynctrait;

[derive(Debug)]

enum Error { Fail }

struct Computer {} struct Manager {} type Pool = deadpool::managed::Pool;

impl Computer { async fn get_answer(&self) -> i32 { 42 } }

[async_trait]

impl deadpool::managed::Manager for Manager { async fn create(&self) -> Result { Ok(Computer {}) } async fn recycle(&self, conn: &mut Computer) -> deadpool::managed::RecycleResult { Ok(()) } }

[tokio::main]

async fn main() { let mgr = Manager {}; let pool = Pool::new(mgr, 16); let mut conn = pool.get().await.unwrap(); let answer = conn.getanswer().await; asserteq!(answer, 42); } ```

Database connection pools

Deadpool supports various database backends by implementing the deadpool::managed::Manager trait. The following backends are currently supported:

Backend | Crate ----------------------------------------------------------- | ----- tokio-postgres | deadpool-postgres lapin (AMQP) | deadpool-lapin redis | deadpool-redis

Reasons for yet another connection pool

Deadpool is by no means the only pool implementation available. It does things a little different and that is the main reason for it to exist:

Differences to other connection pool implementations

Unmanaged pool

An unmanaged pool is useful when you can't write a manager for the objects you want to pool or simply don't want to. This pool implementation is slightly faster than the managed pool because it does not use a Manager trait to create and recycle objects but leaves it up to the user.

Unmanaged pool example

```rust use deadpool::unmanaged::Pool;

struct Computer {}

impl Computer { async fn get_answer(&self) -> i32 { 42 } }

[tokio::main]

async fn main() { let pool = Pool::from(vec![ Computer {}, Computer {}, ]); let s = pool.get().await; asserteq!(s.getanswer().await, 42); } ```

License

Licensed under either of

at your option.