数据库

位置:IT落伍者 >> 数据库 >> 浏览文章

高性能MySQL:MySQL 基准测试套件


发布日期:2024年08月14日
 
高性能MySQL:MySQL 基准测试套件

MySQL 基准测试套件

如上所示count_distinct_group_on_key(:) 测试花费了 秒(wallclock secs)这是客户端运行测试花费的总时间其他值(包括usrsyscursrcsys)则占了测试的 秒的开销这是运行客户端测试代码所花费的时间而不是等待MySQL 服务器响应的时间而测试者真正需要关心的测试结果是除去客户端控制的部分即实际运行时间应该是

除了运行全部测试集外也可以选择单独执行其中的部分测试项例如可以选择只执行insert 测试这会比运行全部测试集所得到的汇总信息给出更多的详细信息

sqlbench$ /testinsert

Testing server MySQL log at ::

Testing the speed of inserting data into table and do some selects on it

The tests are done with a table that has rows

Generating random keys

Creating tables

Inserting rows in order

Inserting rows in reverse order

Inserting rows in random order

Time for insert (

wallclock secs ( usr sys + cusr csys = CPU)

Testing insert of duplicates

Time for insert_duplicates (

wallclock secs ( usr sys + cusr csys = CPU)

返回目录高性能MySQL

编辑推荐

ASP NET开发培训视频教程

数据仓库与数据挖掘培训视频教程

Oracle索引技术

上一篇:高性能MySQL:http

下一篇:高性能MySQL:sysbench(1)