18 releases (1 stable)

Uses old Rust 2015

1.0.0 Jan 2, 2018
1.0.0-rc1 Dec 23, 2017
0.99.0 Nov 29, 2017
0.15.0 Jul 23, 2017
0.5.0 Feb 6, 2016

#2591 in Database interfaces

Download history 674/week @ 2024-09-05 598/week @ 2024-09-12 794/week @ 2024-09-19 713/week @ 2024-09-26 491/week @ 2024-10-03 386/week @ 2024-10-10 695/week @ 2024-10-17 624/week @ 2024-10-24 666/week @ 2024-10-31 276/week @ 2024-11-07 240/week @ 2024-11-14 612/week @ 2024-11-21 795/week @ 2024-11-28 730/week @ 2024-12-05 1199/week @ 2024-12-12 386/week @ 2024-12-19

3,208 downloads per month
Used in 17 crates (14 directly)

MIT license

5KB
58 lines

r2d2-diesel

Provides r2d2 support to allow connection pooling with Diesel.

Examples

The examples creates a connection pool with default settings for a PostgreSQL or SQLite database running on localhost, then creates a bunch of threads and acquires a connection from the pool for each thread.

Executable versions are in examples/ which you can run with cargo run --example postgres --features "diesel/postgres" or cargo run --example sqlite --features "diesel/sqlite".

extern crate diesel;
extern crate r2d2;
extern crate r2d2_diesel;

use std::thread;

use diesel::PgConnection;
use r2d2_diesel::ConnectionManager;

fn main() {
    let manager = ConnectionManager::<PgConnection>::new("postgres://localhost/");
    let pool = r2d2::Pool::builder().build(manager).expect("Failed to create pool.");

    for _ in 0..10i32 {
        let pool = pool.clone();
        thread::spawn(move || {
            let connection = pool.get();

            assert!(connection.is_ok());
        });
    }
}

Using diesel master branch

If you want to use diesel master's branch with r2d2-diesel you have to add the following section in your Cargo.toml file. If you're using a workspace, this needs to be in the Cargo.toml at the root of the workspace.

[patch.crates-io]
diesel = { git = "https://github.com/diesel-rs/diesel.git" }
diesel_infer_schema = { git = "https://github.com/diesel-rs/diesel.git" }
diesel_codegen = { git = "https://github.com/diesel-rs/diesel.git" }

Dependencies

~4–9MB
~90K SLoC