MySQL version 5.1 comes with an alternative, faster InnoDB implementation (called "InnoDB Plugin").
Switching is easy:
- Stop your mysqld with sudo stop mysql
- Add the following lines to your /etc/mysql/my.cnfunder the[mysqld]section
 ignore-builtin-innodb
 plugin-load=innodb=ha_innodb_plugin.so
- Start your mysqld with sudo start mysql
The file format has not changed, your tables should survive this.
Note: This is not necessary in MySQL 5.5, where the new implementation is the default.
Posted by Tobias Kraze to makandra dev (2012-05-25 09:52)