0

Possible Duplicate:
MyISAM versus InnoDB

Hi there,

In MySQL, which storage engine is faster? InnoDB or MyISAM? Can any one list their +/- here? not detailed list but in short.

Thanks.

Community
  • 1
  • 1
gautamlakum
  • 11,815
  • 23
  • 67
  • 90

1 Answers1

0

I'm not sure you can get a definitive answer. I think MyISAM is faster for many simple queries, however, it only has table-level locks. InnoDB, on the other-hand uses row-locking, which could mean things are faster when you are running multiple large queries concurrently.

Adam Wagner
  • 15,469
  • 7
  • 52
  • 66