| 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
|
|
|
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
|
 |
 |
|
|
subject: Connection pooling Examples
|
|
|