17 releases

0.8.3 Feb 1, 2024
0.8.1 May 31, 2023
0.8.0 Mar 28, 2022
0.7.1 Aug 11, 2021
0.3.0 Mar 17, 2019

#13 in Asynchronous

Download history 51475/week @ 2024-01-03 49005/week @ 2024-01-10 54984/week @ 2024-01-17 50242/week @ 2024-01-24 53103/week @ 2024-01-31 44066/week @ 2024-02-07 45051/week @ 2024-02-14 45777/week @ 2024-02-21 46869/week @ 2024-02-28 50403/week @ 2024-03-06 48823/week @ 2024-03-13 50211/week @ 2024-03-20 50961/week @ 2024-03-27 51137/week @ 2024-04-03 59063/week @ 2024-04-10 45731/week @ 2024-04-17

216,811 downloads per month
Used in 114 crates (69 directly)

MIT license

38KB
792 lines

bb8

Documentation Crates.io Build status codecov License: MIT

A full-featured connection pool, designed for asynchronous connections (using tokio). Originally based on r2d2.

Opening a new database connection every time one is needed is both inefficient and can lead to resource exhaustion under high traffic conditions. A connection pool maintains a set of open connections to a database, handing them out for repeated use.

bb8 is agnostic to the connection type it is managing. Implementors of the ManageConnection trait provide the database-specific logic to create and check the health of connections.

A (possibly not exhaustive) list of adapters for different backends:

Backend Adapter Crate
tokio-postgres bb8-postgres (in-tree)
redis bb8-redis (in-tree)
redis_cluster_async bb8-redis-cluster
rsmq rsmq_async
bolt-client bb8-bolt
diesel bb8-diesel
tiberius bb8-tiberius
nebula-client bb8-nebula
memcache-async bb8-memcached
lapin bb8-lapin
arangors bb8-arangodb

Example

Using an imaginary "foodb" database.

#[tokio::main]
async fn main() {
    let manager = bb8_foodb::FooConnectionManager::new("localhost:1234");
    let pool = bb8::Pool::builder()
        .max_size(15)
        .build(manager)
        .await
        .unwrap();

    for _ in 0..20 {
        let pool = pool.clone();
        tokio::spawn(async move {
            let conn = pool.get().await.unwrap();
            // use the connection
            // it will be returned to the pool when it falls out of scope.
        });
    }
}

License

Licensed under the MIT license (LICENSE).

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be licensed as above, without any additional terms or conditions.

Dependencies

~3–11MB
~89K SLoC