async connection pool #1593
-
I am exploring concept of using in Async Connection pool and wondering is that right approach, since lettuce inherantly supports pipelining? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Actually, pooling is only required when using transactions or blocking operations ( |
Beta Was this translation helpful? Give feedback.
-
Thanks Mark for immediate response!! |
Beta Was this translation helpful? Give feedback.
-
Mark, Moreover I tried the example to create connection pool using cluster as per the documentation
|
Beta Was this translation helpful? Give feedback.
Actually, pooling is only required when using transactions or blocking operations (
BLPOP
,XREAD … BLOCK …
). In all other cases, you're better off with a single connection.