vote up 3 vote down star

Hi folks, 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?

Best to all,

flag
1  
"what criteria should I use to determine which engine to use?" - wouldn't that depend on your specific requirements? – Mitch Wheat Nov 7 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 at 18:41

3 Answers

vote up 0 vote down

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|flag
vote up 3 vote down

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|flag
vote up 0 vote down

The MySQL documentation has a good summary of all the engines and their differences:

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

link|flag

Your Answer

Get an OpenID
or

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