stompgem / stomp

A ruby gem for sending and receiving messages from a Stomp protocol compliant message queue. Includes: failover logic, ssl support.
http://stomp.github.com
Apache License 2.0
152 stars 80 forks source link

connection pooling #145

Closed krish4 closed 6 years ago

krish4 commented 6 years ago

In my current project I'm opening and closing the connection for every request. This is a time-consuming operation and it is nice to have connections pooled.

how we can have connection pooling pls help me on this issue

gmallard commented 6 years ago

Pooling is a design issue. Nothing to do with STOMP or the stomp gem.

You are responsible for ypu application design..