fix documentation (#1055)

pull/1058/head
oshai 7 years ago committed by Brett Wooldridge
parent d3ee2c7386
commit a5bdec0ad7

@ -112,12 +112,9 @@ public interface HikariConfigMXBean
void setMaxLifetime(long maxLifetimeMs); void setMaxLifetime(long maxLifetimeMs);
/** /**
* The property controls the maximum size that the pool is allowed to reach, including both idle and in-use * The property controls the minimum number of idle connections that HikariCP tries to maintain in the pool,
* connections. Basically this value will determine the maximum number of actual connections to the database * including both idle and in-use connections. If the idle connections dip below this value, HikariCP will
* backend. * make a best effort to restore them quickly and efficiently.
* <p>
* When the pool reaches this size, and no idle connections are available, calls to getConnection() will
* block for up to connectionTimeout milliseconds before timing out.
* *
* @return the minimum number of connections in the pool * @return the minimum number of connections in the pool
*/ */

Loading…
Cancel
Save