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

I want use redis script but for bb8-redis features is disable `default-features = false` How i can enabled them?

Is it possible that the application will not crash if the initial connection is not available at pool creation time? and a pool with a status of "pending connection" can...

Hi, I found what seems to be a bug. When multiple connections return `true` on `has_broken()`, all future requests to `get()` fail with a `TimedOut` error. This code can be...

Support to customize the runtime associated with `spawn` to solve the problem of across runtimes. Scenario: The connection connected by the runtime `A`, use by the runtime `B`, destroy `A`...

We're using bb8 (thanks for doing it!) in a service handling lots of traffic, with bb8 used millions of times per minute. Today we hit a deadlock that seems to...

Error: Unable to initialize redis client. Caused by: can't connect with TLS, the feature is not enabled [Finished running. Exit status: 1] I can work on a fix for this...

The reaper runs every 30 seconds by default, which means any `max_lifetime` and `idle_timeout` will be ignored (well, enforced too late really) if set to less than 30 seconds. A...

When using a connection pool with tokio_postgres, the connection hangs until a TimedOut error is returned if the password is incorrect. This behaviour is undesirable and should just result in...

# Exposing two new attributes as part of a new `Statistics` type We will be exposing the two new attributes as part of a new `Statistics` type: - **gets**: Total...