When using Tomcat with MySQL, what is the relationship between poolPreparedStatements setting in Tomcat DataSource configuration (I believe coming from DBCP) and Connector/J cachePrepStmts setting? What's the optimal configuration?

link|improve this question

68% accept rate
feedback

2 Answers

up vote 1 down vote accepted

poolPreparedStatements is a setting for the Tomcat JDBC connection pool and cachePrepStmts is a setting for Connector/J to tell MySQL to cache prepared statements. Two completely different things. cachePrepStmts is a per connection setting, but Connector/J doesn't concern itself with whether it's connecting to a database connection pool or to MySQL directly, yet cachePrepStmts works at it's best with persistent connections (e.g. connection pools). To use cachePrepStmts with a connection pool is the optimal configuration. Using poolPreparedStatements in Tomcat is to open a can of memory management worms (check out the Tomcat docs for this setting and you'll see). Really, it's best to let MySQL cache the prepared statements and let Tomcat pool the connections and not try to have one do the other's job.

link|improve this answer
So, you're suggesting that Connector/J will do a better job than DBCP for pooling prepared statements, right? Also, I find this confusing: "Connector/J doesn't concern itself with whether it's connecting to a database connection pool or to MySQL directly". Connector/J is at a lower level than DBCP, so it always connects to MySQL directly, right? – ykaganovich Jan 10 '11 at 21:34
No, MySQL will do a better job of caching prepared statements than DBCP, so set the cachePrepStmts flag in your Connector/J connections and leave the DBCP prep statement pooling alone. Connector/J connects directly to MySQL and DBCP pools a bunch of Connector/J connections. I guess the comment of mine you quoted was garbled and confusing. – Fred Garvin Jan 11 '11 at 4:42
feedback

Not sure if this will help, but have a look at the accepted answer of this question.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.