bb8 icon indicating copy to clipboard operation
bb8 copied to clipboard

Full-featured async (tokio-based) postgres connection pool (like r2d2)

Results 38 bb8 issues
Sort by recently updated
recently updated
newest added

* use `#[must_use]` for Self-returning fn * some minor docs for panics * use `Self` instead of a specific type in some cases I used this command to test: ```...

It seems there is a json high nesting bug after each CI run. Not certain what is causing it, but all PRs end up in a failed state, making CI...

Hi, I ran `cargo clippy -- -W clippy::pedantic --no-deps` and it seems there are quiet a few lints being reported, some possibly more important than others. Are you interesting in...

I am looking to use bb8 to make a basic connection pool that holds a collection of open sockets(in the form of [tokio](https://docs.rs/tokio/latest/tokio/index.html)::[net](https://docs.rs/tokio/latest/tokio/net/index.html)::[TcpStream](https://docs.rs/tokio/latest/tokio/net/struct.TcpStream.html#)) to a remote server. The issue is...

The crate `uuid` recently updated first to `1.0` and then to `1.1`. Unfortunately, `bb8-postgres` is still only compatible with `0.8`. The dependency `tokio-postgres` has recently added the flag `with-uuid-1`. As...

According to the docs for [`Builder::idle_timeout`](https://docs.rs/bb8/latest/bb8/struct.Builder.html#method.idle_timeout), "idle connections in excess of `min_idle` will be closed at the next reaping after remaining idle past this duration." To me, this implies that...

I just stumbled across the [rust-pool-benchmark](https://github.com/Astro36/rust-pool-benchmark) repository by @Astro36 and found bb8 deadlocking. Both `0.7` and `0.8` are affected: - Astro36/rust-pool-benchmark#1 - Astro36/rust-pool-benchmark#3 As the maintainer of deadpool I'm not...

I made a Manager for [scylla](https://github.com/scylladb/scylla-rust-driver) and it worked great when I had the `max_size` set to the same amount as `min_idle`. Here's my implementation: ```rust use bb8::ManageConnection; use scylla::{Session,...

Implement multiplexed connections in order to implement a workaround against issue #95. This workaround was mentioned by the author of the redis-rs library: https://github.com/mitsuhiko/redis-rs/issues/325#issuecomment-846007813 Based on my experience of the...