Switching to InnoDB But how?
Transactions Crash recovery Table 'node_revisions' is marked as crashed and should be repaired
 
> ALTER TABLE tablename ENGINE=InnoDB;
mysql_convert_table_format --type=InnoDB databasename
 
Buffer pool Tablespace Transaction log
[mysqld] default_storage_engine = InnoDB innodb_buffer_pool_size = 512M innodb_log_buffer_size = 8M innodb_log_file_size = 32M innodb_file_per_table = 1
innodb_flush_method = O_DIRECT (on Linux)
> SET GLOBAL innodb_fast_shutdown=0; $ mv /var/lib/mysql/ib_logfile* /somewhere/safe $ /etc/init.d/mysql restart
log = … log_bin = ... expire_log_days =
read_buffer_size = 1M read_rnd_buffer_size = 1M query_cache_limit = 128K query_cache_size = 8M
ourdelta.org

InnoDB - Why and how?