I am in reference to this excellent article regarding sizing a database connection pool by brettwooldridge author of HikariCP.
Amongst other, the article provide a formula for determining the size of one's database connection pool:
connections = ((core_count * 2) + effective_spindle_count)
To quote brettwooldridge:
Guess what that means? Your little 4-Core i7 server with one hard disk should be running a connection pool of: 9 = ((4 * 2) + 1)
The formula gives a size of 9 for the connection pool.
Now back to my question: I plan to use Cloudfoundry-Pivotal/HikariCP/ClearDB in order to deploy a webapp in the cloud.
How and where do I get the values to feed into the formula?