From 3397f8572280f7face1390cc887ad34fa2cccd2c Mon Sep 17 00:00:00 2001 From: fhanik Date: Fri, 1 May 2009 02:02:04 +0000 Subject: [PATCH] doco git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@770514 13f79535-47bb-0310-9956-ffa450edef68 --- modules/jdbc-pool/doc/jdbc-pool.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/jdbc-pool/doc/jdbc-pool.xml b/modules/jdbc-pool/doc/jdbc-pool.xml index a0a54bfb7..a7e01ec16 100644 --- a/modules/jdbc-pool/doc/jdbc-pool.xml +++ b/modules/jdbc-pool/doc/jdbc-pool.xml @@ -52,6 +52,9 @@
  • Tomcat jdbc pool implements a fairness option not available in commons-dbcp and still performs faster than commons-dbcp
  • Tomcat jdbc pool implements the ability retrieve a connection asynchronously, without adding additional threads to the library itself
  • Tomcat jdbc pool is a Tomcat module, it depends on Tomcat JULI, a simplified logging framework used in Tomcat.
  • +
  • Retrieve the underlying connection using the javax.sql.PooledConnection interface.
  • +
  • Starvation proof. If a pool is empty, and threads are waiting for a connection, when a connection is returned, + the pool will awake the correct thread waiting. Most pools will simply starve.
  • -- 2.11.0