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.

Tomcat Connection Pool Exhausted

I'm using Apache Tomcat JDBC connection pooling in my project. I'm confused because under heavy load I keep seeing the …

apache tomcat jdbc connection-pooling pooling
How to properly to configure ActiveMQ with pooling?

We use following configuration for AMQ <bean id="jmsConnectionFactory" class="org.apache.activemq.ActiveMQConnectionFactory"> <property name="brokerURL" …

activemq connection-pooling apache-camel
Tomcat Connection pool creating too many connections, stuck in sleep mode

I'm using Tomcat 6.0.29, with Tomcat 7's connection pool and MySQL. Testing my application, it doesn't reuse anything from the pool, …

java mysql tomcat connection-pooling
ODP.NET Connection Pooling Parameters

I am trying to configure connection pooling for my .NET application using ODP.NET version 2.111.6.20. The database is Oracle 11.1. I …

c# .net oracle connection-pooling odp.net
Getting OSGi services from a bundle in Sling/CQ

I am using Day CQ. I want to store some data in a SQL Server DB, using the connection pool …

servlets osgi connection-pooling sling aem
node-mysql connection pooling

I am using node-mysql module (https://github.com/felixge/node-mysql) OR (http://utahjs.com/2010/09/22/nodejs-and-mysql-introduction/) . Is this API handling connection …

mysql database node.js connection-pooling
How to access MySQL from multiple threads concurrently

We're doing a small benchmark of MySQL where we want to see how it performs for our data. Part of …

c++ mysql c multithreading connection-pooling
Thinking behind decision of database connection pool size

i am working on opensource java based application i.e xwiki. Insie hibernate.cfg.xml i can see value of …

java sql-server database-connection connection-pooling flexy-pool
Cannot get a connection, pool error Timeout waiting for idle object :sakai

iam using sakai 2.9.1 after a few operations the server stops responding and prints log:- 2014-02-20 12:48:47,085 WARN http-bio-8080-exec-18 …

connection-pooling apache-commons-dbcp sakai
Tomcat JDBC Connection Pool: testOnBorrow vs testWhileIdle

For various reasons connections in a pool can become invalid: server connection timeout, network issues... My understanding is that a …

tomcat jdbc connection-pooling