MySQL Table Types
High Performance PHP
2024-11-24
41
MyISAM
•
Efficient For
either
High Volume writes
or
reads
•
Table level locking
•
No Transaction support
InnoDB
•
Efficient locking (Row-level update, non-locking read)
•
Foreign Keys, Transactions
•
High Concurrency