aspose file tools
The moose likes Java in General and the fly likes Connection pooling Examples Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Connection pooling Examples" Watch "Connection pooling Examples" New topic
Author

Connection pooling Examples

Tarik Ansari
Ranch Hand

Joined: Dec 31, 2008
Posts: 40
Hello,

Can somebody explain what does connection pooling mean by simple samples? i want to learn it in simpler terms, google search gives results which makes me more confused.

thanks in advance
tarik
Devaka Cooray
Saloon Keeper

Joined: Jul 29, 2008
Posts: 2692
    
    3

Pooling means using some cache entries for the purpose of reusing. In particular for the connection pooling, it stores the connection (eg: database connection) in a 'pool' which is cached. With that case, we can reuse the same connection later without reconnecting.


Author of ExamLab (Download) - the free mock exam kit for SCJP / OCPJP
Home Page -- Twitter Profile -- JavaRanch FAQ -- How to Ask a Question
bala nannaka
Greenhorn

Joined: Apr 02, 2007
Posts: 28
Creating or opening the connection for each request is a costliest operation.Costliest in means of consuming the time for every request is a serious problem.to overcome this creating the set of connections(pool of connections) at server startup time and make them availble to the application is a good solution
Tarik Ansari
Ranch Hand

Joined: Dec 31, 2008
Posts: 40
Thanks for your replies..

i need sample exercise of connection pooling from where i can learn and obviously make more confidence.

Thanks
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Connection pooling Examples
 
Similar Threads
Questions on EJB
Connection Pooling
Driver Loading
servlet destroy method and session
pooling in tomcat 6.x