Fix a semantic issue with a sentence (#1558)

pull/1249/head^2
Kaartic Sivaraam 4 years ago committed by GitHub
parent 43a3ce0aec
commit e2a03fce57
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -8,7 +8,7 @@ The user has an environment where connection creation is expensive, on the order
*Generally speaking, for the best performance in response to spike demands, HikariCP recommends a fixed-size pool.*
Unfortunately, the user's application is also in an environment where many other applications are connected to the same database, and therefore dynamically-sized pools are desirable -- where idle applications are allowed to give some of up their connections. The user is running the application with HikariCP configured as ``minimumIdle=5``.
Unfortunately, the user's application is also in an environment where many other applications are connected to the same database, and therefore dynamically-sized pools are desirable -- where idle applications are allowed to give up some of their connections. The user is running the application with HikariCP configured as ``minimumIdle=5``.
In this environment, the application has periods of quiet, as well as sudden spikes of requests, and periods of sustained activity. The combination of high connection setup times, a dynamically-sized pool requirement, and spike demands is just about the worst case scenario for a connection pool.

Loading…
Cancel
Save