bonecp

Java Connection Pooling best practices?

After getting fed up with c3p0's constant locking I'm turning to boneCP for an alternative Connection Pool for my Database. I have a server app that processes around 7,000 items per minute and needs to log those items into our mysql database. I currently have 100 worker threads and have set up my Pool like such: BoneCPConfig config = ne...

Eclipse & Datanucleus - Help implementing PoolManager (BoneCP,Proxool,C3P0 or DBCP)

Datanucleus supports some pool manager options: http://www.datanucleus.org/products/accessplatform_2_2/rdbms/connection_pooling.html DBCP plugin C3P0 plugin Proxool plugin And recently BoneCP plugin I've tried EVERYONE of them, with NO success, because of OSGI (i'm under ECLIPSE RCP) The closest i've been to succeed was with DBCP...