Many sites and script still use MySQL instead of PostgreSQL. I have several low-priority blogs and therefore I do not want to switch to another database, so I use MySQL.
Here's the problem, their on VPS with low memory. This means that I cannot enable InnoDB, since it uses about 80 MB of memory for download only. Therefore, I have to risk launching MyISAM.
With that in mind, what data loss am I viewing with MyISAM? If there was a power failure because someone was posting a blog post, would I just lose this entry or the entire database?
In these low-level boxes, I'm fine with the loss of some recent comments or blog posts until the entire database is lost.
source
share