Jump to content

[SOLVED] innoDB or MyISAM


Recommended Posts

  • 1 year later...
  • 6 months later...

See here: http://serverfault.com/questions/245761/simpler-way-to-convert-all-tables-from-innodb-to-myisam

 

The question is why you want to use MyIsam. If you want separate files for each table you can also achieve that with InnoDb. See http://dev.mysql.com/doc/refman/5.5/en/innodb-multiple-tablespaces.html.

 

Be careful to make backups when you are experimenting with these kinds of instructions!

Edited by musicmaster (see edit history)
Link to comment
Share on other sites

Yes you are.

 

innoDB is the best choice, because prestashop uses primary / foregin keys.

Prestashop does not use foreign keys, it also does not include any stored procedures.

 

Prestashop does use primary keys and indexes, which Myisam supports very well.

 

Prestashop also does not use transaction commits and/or rollbacks, which would make InnoDB required, so there isn't a strong reason to use InnoDB

  • Like 1
Link to comment
Share on other sites

×
×
  • Create New...