up vote 3 down vote favorite
share [g+] share [fb]

I want to make a summary of the main differences between all the Mysql engines and of course the most populars also.

And what criteria should I use to determine which engine to use?

link|improve this question
1  
"what criteria should I use to determine which engine to use?" - wouldn't that depend on your specific requirements? – Mitch Wheat Nov 7 '09 at 18:30
He's asking how to determine which engine he should use, not which engine he should use. It's a perfectly valid question. – Matt Baker Nov 7 '09 at 18:41
feedback

2 Answers

They are very well described here:

http://dev.mysql.com/doc/refman/5.0/en/storage-engines.html

Use InnoDB, if you're in doubt. It is general-purpose and performs well.

link|improve this answer
feedback

You should take a look to the manual, like Lars and Phil said.

Although, i could tell you in short, the differences between the primaries engines (MyISAM and innoDB) are in Transaction support, foraing key support, Locking level (MyISAM locks the entire table, innoDB has row level locking), and MVCC. There are too much many differences between them. I recommend you to take a look at: Pro MySQL Apress 2005.

-- Santiago Basulto.-

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.