From cb01a884e4ef897236c91d7d4144515c57365d3e Mon Sep 17 00:00:00 2001 From: Niklas Mack Date: Mon, 15 Dec 2025 21:57:06 +1300 Subject: [PATCH] bb8-redis: document caveat of redis connection config --- redis/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/redis/src/lib.rs b/redis/src/lib.rs index 7de5d30..5dd1947 100644 --- a/redis/src/lib.rs +++ b/redis/src/lib.rs @@ -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._ +//! +//! //! # Example //! //! ```