Replies: 1 comment 1 reply
-
The reason why I haven't given that a try, yet is because I didn't see a way to properly Another issue I see here is what about disconnects? Does the lapin connection object implement some automatic reconnect logic that I'm not aware of? Apart from those two issues it's cool and I'm more than happy to add this to |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey,
I've been doing some research on optimising RabbitMQ Connections and Channels. I found that Connections should NOT be pooled. Instead Channels should be reused. Although, in terms of benchmarks, there's very little difference. between Pooling Connections vs Channels, it seems for the former is an Anti-pattern since connections are supposed to be long-lives and using a lot of connections drops performance. Not sure if anyone else has looked into this?
I created a Channel Manager (for
deadpool 0.7.0
, v0.8 breaks this code).Beta Was this translation helpful? Give feedback.
All reactions