HarryR first grade
Joined: 03 Apr 2007 Posts: 17 Location: United Kingdom
|
Posted: Fri Jun 01, 2007 11:39 pm Post subject: |
|
|
Hi guitarman.
MyISAM is relatively simple and extremely fast, but can have issues if you're doing lots of inserts, updates, deletes and selects because all modification operations block the table from everything else (e.g. they need an exclusive lock).
Whereas InnoDB has transaction support, meaning that updates, inserts and selects can co-exist as the database is kept in a consistant state.
Google around for: "ACID transactions" or "Referential integrity" (two of the things that InnoDB supports which MyISAM doesn't).
|
|