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

c# - Unity IoC Lifetime per HttpRequest for UserStore -

Change the color of an oval at click in Java AWT -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -