提交 81de9e71 authored 作者: Thomas Mueller's avatar Thomas Mueller

The benchmarks have been run using recent database versions.

上级 92158a76
MySQL MySQL
-------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------
Start: Start:
sudo mysqld_safe sudo mysqld_safe --default-storage-engine=innodb
Stop: Stop:
sudo mysqladmin shutdown sudo mysqladmin shutdown
Configuration: Configuration:
sudo cp /usr/local/mysql/support-files/my-medium.cnf /etc/my.cnf
sudo pico /etc/my.cnf
innodb_flush_log_at_trx_commit = 0
Initialization:
sudo mysql sudo mysql
create database test; create database test;
create user 'sa'@'localhost' identified by 'sa'; create user 'sa'@'localhost' identified by 'sa';
...@@ -42,6 +47,13 @@ PostgreSQL ...@@ -42,6 +47,13 @@ PostgreSQL
Non-standard escape mechanism: Non-standard escape mechanism:
select 'Joe''s', 'Joe\'s'; select 'Joe''s', 'Joe\'s';
Configuration:
Mac OS:
/Library/PostgreSQL/8.4/data/postgresql.conf
fsync = off
commit_delay = 1000
HSQLDB HSQLDB
-------------------------------------------------------------------------------------------------------- --------------------------------------------------------------------------------------------------------
To use the same default settings as H2, use: To use the same default settings as H2, use:
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论