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

2009-07-15 Thread adridi
Thanks Tim and Andy!
The JCA adapter pool works great for me.

Abdel

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4243829#4243829

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4243829
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2009-07-14 Thread ataylor
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=bbop=viewtopicp=4243446#4243446

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4243446
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2009-07-14 Thread timfox
If you're servlets are running in the same AS instance as the broker and it's 
JBoss AS then you can just use the JMS JCA adapter to pool connections.

If it's not JBoss then you can share a ConnectionFactory (or 
ClientSessionFactory) instance between servlets - this will provide its own 
pooling of underlying connections.

View the original post : 
http://www.jboss.org/index.html?module=bbop=viewtopicp=4243457#4243457

Reply to the post : 
http://www.jboss.org/index.html?module=bbop=postingmode=replyp=4243457
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user