java - what does the multithreaded connection pool means? -


hi can please enlighten mind what multithreaded connection pool means? because heard httpclient can allow multithreaded connection pool. mean?

thank in advance.

connection pooling concept of maintaining particular no of connection objects in pool.so there decrease in runtime overhead.instead of creating objects @ runtime when request comes connection object pulled pool , used, after completion object sent pool.

we not supposed open or close connection take place automatically costly operation.

you can refer link sample code http://javaprogramming.language-tutorial.com/2012/09/a-sample-java-code-for-connection.html


Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

javascript - Using Windows Media Player as video fallback for video tag -

c# - Unity IoC Lifetime per HttpRequest for UserStore -