Deadpool for PostgreSQL Latest Version

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

This crate implements a deadpool manager for tokio-postgres and also provides a statement cache by wrapping tokio_postgres::Client and tokio_postgres::Transaction.

Features

| Feature | Description | Extra dependencies | Default | | ------- | ----------- | ------------------ | ------- | | config | Enable support for config crate | config, serde/derive | yes | | rt_tokio_1 | Enable support for tokio crate | deadpool/rt_tokio_1 | yes | | rt_async-std_1 | Enable support for async-std crate | deadpool/rt_async-std_1 | no |

Important: async-std support is currently limited to the async-std specific timeout function. You still need to enable the tokio1 feature of async-std in order to use this crate with async-std.

Example

```rust,ignore use deadpoolpostgres::{Config, Manager, ManagerConfig, Pool, RecyclingMethod}; use tokiopostgres::NoTls;

[tokio::main]

async fn main() { let mut cfg = Config::new(); cfg.dbname = Some("deadpool".tostring()); cfg.manager = Some(ManagerConfig { recyclingmethod: RecyclingMethod::Fast }); let pool = cfg.createpool(NoTls).unwrap(); for i in 1..10 { let mut client = pool.get().await.unwrap(); let stmt = client.preparecached("SELECT 1 + $1").await.unwrap(); let rows = client.query(&stmt, &[&i]).await.unwrap(); let value: i32 = rows[0].get(0); assert_eq!(value, i + 1); } } ```

Example with config and dotenv crate

```env

.env

PG__DBNAME=deadpool ```

```rust use deadpoolpostgres::{Manager, Pool}; use dotenv::dotenv; use serde::Deserialize; use tokiopostgres::NoTls;

[derive(Debug, Deserialize)]

struct Config { pg: deadpool_postgres::Config }

impl Config { pub fn fromenv() -> Result { let mut cfg = ::configcrate::Config::new(); cfg.setdefault("pg.dbname", "deadpool"); cfg.merge(::configcrate::Environment::new().separator("_"))?; cfg.tryinto() } }

[tokio::main]

async fn main() { dotenv().ok(); let mut cfg = Config::fromenv().unwrap(); let pool = cfg.pg.createpool(NoTls).unwrap(); for i in 1..10 { let mut client = pool.get().await.unwrap(); let stmt = client.preparecached("SELECT 1 + $1").await.unwrap(); let rows = client.query(&stmt, &[&i]).await.unwrap(); let value: i32 = rows[0].get(0); asserteq!(value, i + 1); } } ```

Note: The code above uses the crate name config_crate because of the config feature and both features and dependencies share the same namespace. In your own code you will probably want to use ::config::ConfigError and ::config::Config instead.

Example using an existing tokio_postgres::Config object

```rust,ignore use std::env; use deadpoolpostgres::{Manager, ManagerConfig, Pool, RecyclingMethod}; use tokiopostgres::NoTls;

[tokio::main]

async fn main() { let mut pgconfig = tokiopostgres::Config::new(); pgconfig.hostpath("/run/postgresql"); pgconfig.hostpath("/tmp"); pgconfig.user(env::var("USER").unwrap().asstr()); pgconfig.dbname("deadpool"); let mgrconfig = ManagerConfig { recyclingmethod: RecyclingMethod::Fast }; let mgr = Manager::fromconfig(pgconfig, NoTls, mgrconfig); let pool = Pool::new(mgr, 16); for i in 1..10 { let mut client = pool.get().await.unwrap(); let stmt = client.preparecached("SELECT 1 + $1").await.unwrap(); let rows = client.query(&stmt, &[&i]).await.unwrap(); let value: i32 = rows[0].get(0); asserteq!(value, i + 1); } } ```

FAQ

License

Licensed under either of

at your option.