Expand description
bb8-diesel allows the bb8 asynchronous connection pool to be used underneath Diesel.
This is currently implemented against Diesel’s synchronous
API, with calls to tokio::task::spawn_blocking
to safely
perform synchronous operations from an asynchronous task.
Structs§
- An async-safe analogue of any connection that implements
diesel::Connection
. - A connection manager which implements
bb8::ManageConnection
to integrate with bb8.