From 964045f657947f37264da78b5e87f1dc832d384e Mon Sep 17 00:00:00 2001 From: fhanik Date: Tue, 21 Jul 2009 16:20:11 +0000 Subject: [PATCH] Document Linux performance/overhead of using multi lock mechanism git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@796362 13f79535-47bb-0310-9956-ffa450edef68 --- modules/jdbc-pool/doc/jdbc-pool.xml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/modules/jdbc-pool/doc/jdbc-pool.xml b/modules/jdbc-pool/doc/jdbc-pool.xml index 0bdef8277..800d89604 100644 --- a/modules/jdbc-pool/doc/jdbc-pool.xml +++ b/modules/jdbc-pool/doc/jdbc-pool.xml @@ -354,7 +354,9 @@

(boolean) Set to true if you wish that calls to getConnection should be treated fairly in a true FIFO fashion. This uses the org.apache.tomcat.jdbc.pool.FairBlockingQueue implementation for the list of the idle connections. The default value is false. - This flag is required when you want to use asynchronous connection retrieval. + This flag is required when you want to use asynchronous connection retrieval.
+ During performance tests, the fairQueue does very well on a multi core Solaris system, + but performs terribly on a Linux Fedora 11 system. On Linux we recommend setting this to false.

-- 2.11.0