Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My client needs infinite number of Connections. I know this is a wrong approach but just for the knowledge can we set the connection pool size to infinite?

share|improve this question
Could you be a little bit more specific? Which connection pool implementation do you actually use? – dunni Jul 20 '11 at 20:25
3  
You will probably need a cluster of infinite number of Oracle servers. Or to do some debugging and identify connection leaks. – Olaf Jul 20 '11 at 20:25
Your customer should really tell you why he requires an infinite number of connections... btw: it will not work, I've seen it – home Jul 20 '11 at 20:43
assuming you're using a servlet container, you can tweak your pool to do so in context.xml / web.xml... if not, then you would have to provide your own pool instance (or use one from commons.apache.org/pool) and configure it to do so... however, be aware that no implementation will give an infinite number of connections ;) – chahuistle Jul 20 '11 at 21:41
infinite connection pool = connection per caller? – Perception Jul 21 '11 at 13:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.