I just installed MySQL 5.5, which has the default InnoDB engine, and the implemented INSERT queries are very slow! After disabling the general journal, it got a little better, but still very slow. I am analyzing mysql to find a problem, but no chance.
Here's a comparative test:
Testing the (n) MYISAM table using 500 rows. - 5866 inserts per second. - 128866 lines per second. - 56306 updates per second.
Testing the INNODB (n) INNODB table using 500 rows. - 9 inserts per second. - 28539 lines per second. - 4358 updates per second.
I have 9 insert queries in InnoDB compared to 5866 with MyISAM.
here is my my.ini (windows 8 64bit):
[mysql] default-character-set=utf8 no-auto-rehash [mysqld] max_allowed_packet = 500M table_open_cache = 512
I edited this file for high performance, also had no problems with mysql 5.1
source share