- disabling stale connections with connectionMgr.setConnectionStaleCheckingEnabled(false)
improves performance by a factor of 50 (note: factor, not percent).
This is because stale connection checking adds a constant penalty time, which for very quick requests may be larger than the actual request time. So the stale connection check does not scale. Therefore it was made optional.
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]