From 07e9e41dca8be4a7ea3f6d5b0d5f623611326696 Mon Sep 17 00:00:00 2001 From: Brett Wooldridge Date: Mon, 9 Apr 2018 14:01:11 +0900 Subject: [PATCH] Update README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 034d9db9..1f39b61f 100644 --- a/README.md +++ b/README.md @@ -160,11 +160,11 @@ available, a SQLException will be thrown. Lowest acceptable connection timeout ⌚``idleTimeout``
This property controls the maximum amount of time that a connection is allowed to sit idle in the pool. **This setting only applies when ``minimumIdle`` is defined to be less than ``maximumPoolSize``.** -Whether a connection is retired as idle or not is subject to a maximum variation of +30 -seconds, and average variation of +15 seconds. A connection will never be retired as idle *before* -this timeout. Once the pool reaches ``minimumIdle`` connections, connections will no longer be -retired, even if idle. A value of 0 means that idle connections are never removed from the pool. The minimum -allowed value is 10000ms (10 seconds). +Idle connections will *not* be retired once the pool reaches ``minimumIdle`` connections. Whether a +connection is retired as idle or not is subject to a maximum variation of +30 seconds, and average +variation of +15 seconds. A connection will never be retired as idle *before* this timeout. A value +of 0 means that idle connections are never removed from the pool. The minimum allowed value is 10000ms +(10 seconds). *Default: 600000 (10 minutes)* ⌚``maxLifetime``