I flipped through some stuff today describing different MySQL engines and their pros and cons. It pretty much just reaffirmed my stance: InnoDB is what I would use in most cases because it supports transactions and foreign keys, but if I had a single table I needed to be fast, I might use MyISAM. That makes sense, right? Is there anything else I’m missing?
Leave a Reply