From bf3e2c8c0b3398e9e6972908b4fd3385cb1eee29 Mon Sep 17 00:00:00 2001 From: Alexey Kopytov Date: Tue, 9 Nov 2010 18:02:10 +0300 Subject: [PATCH] Fixed an example using an obsolete option in the manual --- doc/manual.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual.xml b/doc/manual.xml index cbc6a2c..4d172d2 100644 --- a/doc/manual.xml +++ b/doc/manual.xml @@ -774,7 +774,7 @@ Example usage: - $ sysbench --test=oltp --mysql-table-type=myisam --oltp-table-size=1000000 --mysql-socket=/tmp/mysql.sock prepare + $ sysbench --test=oltp --mysql-table-engine=myisam --oltp-table-size=1000000 --mysql-socket=/tmp/mysql.sock prepare $ sysbench --num-threads=16 --max-requests=100000 --test=oltp --oltp-table-size=1000000 --mysql-socket=/tmp/mysql.sock --oltp-read-only run The first command will create a MyISAM table 'sbtest' in a database 'sbtest' on a MySQL server using socket, then fill this table with 1M records. The second command will run the actual benchmark with 16 client threads, limiting the total number of request by 100,000.