Why is it a vacuum not needed with Mysql compared to the PostgreSQL?
Robert Haas wrote on this topic. The short version is that InnoDB uses rollback logs, more like Oracle’s design. Only the most recent version of a row is kept on the main table. It must manage log purging, an asynchronous/delayed operation with a related function to PostgreSQL’s VACUUM. This means more writes to do on … Read more