#influx-db #r2d2 #connection-pool #pool #influxdb

r2d2-influx_db_client

InfluxDB support for the R2D2 connection pool

2 releases

0.1.1 Sep 2, 2019
0.1.0 Sep 2, 2019

#2666 in Database interfaces

MIT license

7KB
126 lines

r2d2-influx_db_client  

influx_db_client support library for the r2d2 connection pool.

Install

Add to Cargo.toml:

influx_db_client = "0.3.6"
r2d2 = "0.8"
r2d2-influx_db_client = "0.1.0"

Example

use std::time::Duration;

use r2d2_influx_db_client::{Authentication, InfluxDbConnectionManager};

fn main() {
    let con_mgr = InfluxDbConnectionManager::new("localhost", 8086, "tutorial");
    let pool = r2d2::Pool::builder()
        .connection_timeout(Duration::from_secs(1))
        .test_on_check_out(true)
        .max_size(15)
        .build(connection_manager)
        .expect("Pool");

    // Use pool...
}

Dependencies

~5–17MB
~254K SLoC