Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions redis/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
//! Redis support for the `bb8` connection pool.
//!
//! _Due to the default connection config, pooled connections have a response timeout and can't be used for blocking commands._ \
//! _See [`get_multiplexed_async_connection`](redis::Client::get_multiplexed_async_connection) and [`AsyncConnectionConfig`](redis::AsyncConnectionConfig) for more details._
Comment on lines +3 to +4
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay, I think I finally understand what the issue is that you're talking about. So did they change this in a recent release?

I guess my beef with this is that it seems in no way to specific to connection pooling, so I don't see why we should document it.

//!
//!
//! # Example
//!
//! ```
Expand Down