GenericObjectPool.getMaxIdle

Returns the cap on the number of "idle" instances in the pool. If maxIdle is set too low on heavily loaded systems it is possible you will see objects being destroyed and almost immediately new objects being created. This is a result of the active threads momentarily returning objects faster than they are requesting them, causing the number of idle objects to rise above maxIdle. The best value for maxIdle for heavily loaded system will vary but the default is a good starting point.

@return the maximum number of "idle" instances that can be held in the pool or a negative value if there is no limit

@see #setMaxIdle

class GenericObjectPool(T)
int
getMaxIdle
()

Meta