mysql.benchmark
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. # This file describes how to run MySQL benchmarks with MySQL
  2. # The test was run on a Intel Xeon 2x 550 Mzh machine with 1G memory,
  3. # 9G hard disk.  The OS is Suse 6.4, with Linux 2.2.14 compiled with SMP
  4. # support
  5. # Both the perl client and the database server is run
  6. # on the same machine. No other cpu intensive process was used during
  7. # the benchmark.
  8. #
  9. #
  10. # First, install MySQL from RPM or compile it according to the
  11. # recommendations in the MySQL manual
  12. #
  13. # Start MySQL
  14. bin/safe_mysqld -O key_buffer=16M &
  15. #
  16. # Now we run the test that can be found in the sql-bench directory in the
  17. # MySQL 3.23 source distribution with and without --fast
  18. #
  19. # Note that if you want to make a results that is comparead to some database,
  20. # You should add "--cmp=databasename" as an extra option to the test
  21. #
  22. $CMP=--cmp=pg
  23. run-all-tests --comment="Intel Xeon, 2x550 Mhz, 1G, key_buffer=16M" $CMP
  24. run-all-tests --comment="Intel Xeon, 2x550 Mhz, 1G, key_buffer=16M" --fast $CMP
  25. # If you want to store the results in a output/RUN-xxx file, you should
  26. # repeate the benchmark with the extra option --log --use-old-result
  27. # This will create a the RUN file based of the previous results
  28. #
  29. run-all-tests --comment="Intel Xeon, 2x550 Mhz, 1G, key_buffer=16M" --log --use-old-result $CMP
  30. run-all-tests --comment="Intel Xeon, 2x550 Mhz, 1G, key_buffer=16M" --fast --log --use-old-result $CMP