MYISAM or InnoDB?
MyISAM offers speed, but InnoDB is reliable.
MyISAM is fast, but do not support transactions support.
InnoDB works perfectly fine on many modification of data, because it uses row locking instead of table locking as in MyISAM.
If you need foreign key constraints or transactions, you can only use InnoDB, whereas if you need fulltext indexes, you can only use MyISAM tables
Choose InnoDB, if want multi-statement transactions, advanced isolation levels and row-level locking, foreign key constraints, or go for MyISAM, comparatively used by beginners.
For message board application, here inserts & updates queries are executed a lot of times, then InnoDB would be suitable alternative.
__________________
-------------
Regards,
Spencer T.
"You never loose knowledge by sharing."
|