I am using C3P0. I have below configuration. I need to cache statements.
maxPoolSize="20"
minPoolSize="6"
acquireIncrement="3"
initialPoolSize="3"
maxStatements="2000"
here i installed maxStatementsin 2000. maxPoolSize- 20. Does this mean a total of 2000 * 20 = 40,000 statements to be cached?
Thank!
source
share