Top "Connection-pooling" questions

In software engineering, a connection pool is a cache of connections maintained so that the connections can be reused when future requests to the resource are required.

Node.js Redis Connection Pooling

When using node_redis Node.js module with Redis, should I just use one connection as Redis is single thread …

node.js redis connection-pooling
Using connection pool with JSCH

I'm using JSCH for file upload ever sftp. In it's current state each thread opens and closes connection when needed. …

java multithreading connection-pooling sftp jsch
Why doesn't DirContext.close() return the LDAP connection to the pool?

I noticed while using an LDAP connect pool that calling close() on the context did not appear to return it …

java ldap jndi connection-pooling
Concurrent use of same JDBC connection by multiple threads

I'm trying to better understand what will happen if multiple threads try to execute different sql queries, using the same …

java jdbc database-connection connection-pooling apache-commons-dbcp
PoolingHttpClientConnectionManager does not release connections

I am using Spring to achieve the following: On a server, I receive data via a REST interface in an …

java spring spring-boot connection-pooling apache-httpclient-4.x
SQLConnection pool size and active connection count in C#

In C# it is possible to enable/disable Connection Pooling by using "Pooling=True" and "Max Pool Size=XY" in …

c# count connection-pooling sqlconnection
Connection is not available, request timed out after 30003ms

I'm getting this exception for last few days. This problem occurs when I process 10++ form and connection keep on increasing …

java connection connection-pooling hikaricp
ODP.NET: Avoiding Connection Timeouts with Connection Pooling

At one site I can connect to the Oracle Database with SQL Developer, leave it idle for a long time (…

.net oracle connection-pooling odp.net
C3P0: unreturnedConnectionTimeout in production?

The parameter unreturnedConnectionTimeout times out unreturned connections after a given period of time. I'm trying to decide whether I should …

java hibernate connection-pooling c3p0 persistence.xml
Connection pool with HikariCP to multiple databases

I am developing a monitoring plugin that queries multiple database. I would like to use HikariCP in order to keep …

java jdbc connection-pooling hikaricp