Deadpool Latest Version Build Status

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

Backends

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

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

Example

```rust use asynctrait::asynctrait;

[derive(Debug)]

enum Error { Fail }

struct Connection {}

type Pool = deadpool::Pool;

impl Connection { async fn new() -> Result { Ok(Connection {}) } async fn checkhealth(&self) -> bool { true } async fn dosomething(&self) -> String { "Hooray!".to_string() } }

struct Manager {}

[async_trait]

impl deadpool::Manager for Manager { async fn create(&self) -> Result { Connection::new().await } async fn recycle(&self, conn: &mut Connection) -> deadpool::RecycleResult { if conn.check_health().await { Ok(()) } else { Err(Error::Fail.into()) } } }

[tokio::main]

async fn main() { let mgr = Manager {}; let pool = Pool::new(mgr, 16); let mut conn = pool.get().await.unwrap(); let value = conn.dosomething().await; asserteq!(value, "Hooray!".to_string()); } ```

For a more complete example please see deadpool-postgres

Reasons for yet another pool implementation

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

Differences to other pool implementations

License

Licensed under either of

at your option.