vote up 0 vote down star
2

I use

  • Tomcat
  • C3p0 (JNDI configured inside Tomcat)
  • MySQL(InnoDB) / Derby(not embedded) as Database
  • EHCache (in Memory)
  • Hibernate
  • Testmachine runs WinXP

I used Derby for development and wanted to switch to MySQL.

I was surprised to see, that with MySQL my Tests were app. 50% slower than with Derby.

My Testscenario :

  • app. 2000 Selects, varying in complexity but none used more than one join, all SQLs use Indexes
  • ehcache is filled up with a setup Run, after that i run the Testscenario at least 50x to overcome Optimizer/GC Effects

i verified that the cache is in use, there are NO real SQLs coming to the database, so i just guess its the connection creation time which slows the mysql test down.

flag
If you're using C3P0, wouldn't the connections be pooled/cached? – jdigital Feb 15 at 19:16
yes that should be the case, hmm maybe c3p0 makes some tests before it returns the connection from the pool. ill look into that – Michael Lange Feb 15 at 19:34
In my experience, establishing connections to MySQL has always been very fast. Have you tried using a profiler? – Matt Solnit Feb 18 at 0:12

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.