View Single Post
  #11  
Old 05-17-2009, 04:16 PM
Kobaz
Hill Giant
 
Join Date: Nov 2008
Location: Gold Coast, Oz
Posts: 119
Default

Tables that aren't UPDATED often and aren't huge tend to be faster with myisam. innodb has row-level locks, whilst myisam only has table-level locks. None of the tables in eqemu are really huge, so it's the locking that's going to make the biggest difference on tables that have frequent updates. Innodb also clusters data about the primary key, so SELECTs are quicker when the WHERE clause uses that key.

So I would hesitate to convert everything to innodb unless you have extremely fast drives, although any table that might have concurrent writes to different rows could be quicker with innodb.

I've noticed a marked slowdown on build 488 vs the 450's, with higher loads on mysql. I suspect there was a query introduced that would benefit from better indexing.
Reply With Quote