[jboss-user] [JBoss Messaging] - Re: Any recommendation how to use JBM2 Producers Pool?

ataylor do-not-reply at jboss.com
Tue Jul 14 04:17:27 EDT 2009


you are correct that (1) should be avoided.

regarding (2), When you are using 1 connection per producer are you creating a new session per producer. JBM2 will share connections between sessions created by the same connection factory, see http://labs.jboss.com/file-access/default/members/jbossmessaging/freezone/docs/usermanual-2.0.0.beta3/html_single/index.html#connection-ttl.session.multiplexing. 

JMs has no notion of pooling, A JMS producer should *not* be shared between application threads, each should have its own. If you want to cut down on the number of producers being used you can write your own send method and pool the producers your self, just make sure your send method is synchronized on the producer being used.

View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4243446#4243446

Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=4243446



More information about the jboss-user mailing list