iis服务器助手广告广告
返回顶部
首页 > 资讯 > 数据库 >MySQL如何使用sysbench做OLTP基准测试
  • 858
分享到

MySQL如何使用sysbench做OLTP基准测试

2024-04-02 19:04:59 858人浏览 薄情痞子
摘要

这篇文章给大家分享的是有关Mysql如何使用sysbench做OLTP基准测试的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。 一、 安装① 下载源码

这篇文章给大家分享的是有关Mysql如何使用sysbench做OLTP基准测试的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。

一、 安装
① 下载源码包:https://dev.mysql.com/downloads/benchmarks.html
② 安装依赖 yum -y install automake autoconf libtool
③tar xzvf sysbench-0.4.12.10.tar.gz; cd sysbench-0.4.12.10/
④./autogen.sh; ./configure
⑤ make && make install
然后我们可以在sysbench 目录看到可以执行文件sysbench了

二、命令
首先看下命令基本用法 

  1. root@10.30.5.2:sysbench# ./sysbench --help

  2. Usage:

  3. sysbench [general-options]... --test= [test-options]... command


  4. General options:

  5. --num-threads=N             number of threads to use [1]

  6. --max-requests=N            limit for total number of requests [10000]

  7. --max-time=N                limit for total execution time in seconds [0]

  8. --forced-shutdown=STRING    amount of time to wait after --max-time before forcing shutdown [off]

  9. --thread-stack-size=SIZE    size of stack per thread [32K]

  10. --init-rng=[on|off]         initialize random number generator [off]

  11. --seed-rng=N                seed for random number generator, ignored when 0 [0]

  12. --tx-rate=N                 target transaction rate (tps) [0]

  13. --tx-jitter=N               target transaction variation, in microseconds [0]

  14. --report-interval=N         periodically report intermediate statistics with a specified interval in seconds. 0 disables intermediate reports [0]

  15. --report-checkpoints=[LIST,...]dump full statistics and reset all counters at specified points in time. The argument is a list of comma-separated values representing the amount of time in seconds elapsed from start of test when report checkpoint(s) must be perfORMed. Report checkpoints are off by default. []

  16. --test=STRING               test to run

  17. --debug=[on|off]            print more debugging info [off]

  18. --validate=[on|off]         perform validation checks where possible [off]

  19. --help=[on|off]             print help and exit

  20. --version=[on|off]          print version and exit


  21. Log options:

  22. --verbosity=N      verbosity level {5 - debug, 0 - only critical messages} [4]


  23. --percentile=N      percentile rank of query response times to count [95]


  24. Compiled-in tests:

  25. fileio - File I/O test

  26. cpu - CPU performance test

  27. memory - Memory functions speed test

  28. threads - Threads subsystem performance test

  29. mutex - Mutex performance test

  30. oltp - OLTP test


  31. Commands: prepare run cleanup help version


  32. See 'sysbench --test= help' for a list of options for each test.

以上可以看到 sysbench可以测试的有 CPU 、磁盘IO、内存、线程、MUTEX 以及OLTP ,
常用参数:
--num-threads=N     并发线程数
--max-requests=N    限制压测请求总数
--max-time=N        限制压测时间

这里看下OLTP测试方法

  1. ./sysbench --test=oltp help

  2. sysbench 0.4.12.10:  multi-threaded system evaluation benchmark


  3. oltp options:

  4. --oltp-test-mode=STRING                  test type to use {simple,complex,nontrx,sp} [complex]

  5. --oltp-reconnect-mode=STRING             reconnect mode {session,transaction,query,random} [session]

  6. --oltp-sp-name=STRING                    name of store procedure to call in SP test mode []

  7. --oltp-read-only=[on|off]                generate only 'read' queries (do not modify database) [off]

  8. --oltp-avoid-deadlocks=[on|off]          generate update keys in increasing order to avoid deadlocks [off]

  9. --oltp-skip-trx=[on|off]                 skip BEGIN/COMMIT statements [off]

  10. --oltp-range-size=N                      range size for range queries [100]

  11. --oltp-point-selects=N                   number of point selects [10]

  12. --oltp-use-in-statement=N                Use IN-statement with 10 PK lookups per query [0]

  13. --oltp-simple-ranges=N                   number of simple ranges [1]

  14. --oltp-sum-ranges=N                      number of sum ranges [1]

  15. --oltp-order-ranges=N                    number of ordered ranges [1]

  16. --oltp-distinct-ranges=N                 number of distinct ranges [1]

  17. --oltp-index-updates=N                   number of index update [1]

  18. --oltp-non-index-updates=N               number of non-index updates [1]

  19. --oltp-nontrx-mode=STRING                mode for non-transactional test {select, update_key, update_nokey, insert, delete} [select]

  20. --oltp-auto-inc=[on|off]                 whether AUTO_INCREMENT (or equivalent) should be used on id column [on]

  21. --oltp-connect-delay=N                   time in microseconds to sleep after connection to database [10000]

  22. --oltp-user-delay-min=N                  minimum time in microseconds to sleep after each request [0]

  23. --oltp-user-delay-max=N                  maximum time in microseconds to sleep after each request [0]

  24. --oltp-table-name=STRING                 name of test table [sbtest]

  25. --oltp-table-size=N                      number of records in test table [10000]

  26. --oltp-dist-type=STRING                  random numbers distribution {uniform,gaussian,special} [special]

  27. --oltp-dist-iter=N                       number of iterations used for numbers generation [12]

  28. --oltp-dist-pct=N                        percentage of values to be treated as 'special' (for special distribution) [1]

  29. --oltp-dist-res=N                        percentage of 'special' values to use (for special distribution) [75]

  30. --oltp-point-select-mysql-handler=[on|off]Use MySQL HANDLER for point select [off]

  31. --oltp-point-select-all-cols=[on|off]    select all columns for the point-select query [off]

  32. --oltp-secondary=[on|off]                Use a secondary index in place of the PRIMARY index [off]

  33. --oltp-num-partitions=N                  Number of partitions used for test table [0]

  34. --oltp-num-tables=N                      Number of test tables [1]


  35. General database options:


  36. --db-driver=STRING  specifies database driver to use ('help' to get list of available drivers)

  37. --db-ps-mode=STRING prepared statements usage mode {auto, disable} [auto]



  38. Compiled-in database drivers:

  39. mysql - MySQL driver


  40. mysql options:

  41. --mysql-host=[LIST,...]       MySQL Server host [localhost]

  42. --mysql-port=N                MySQL server port [3306]

  43. --mysql-Socket=STRING         MySQL socket

  44. --mysql-user=STRING           MySQL user [sbtest]

  45. --mysql-passWord=STRING       MySQL password []

  46. --mysql-db=STRING             MySQL database name [sbtest]

  47. --mysql-table-engine=STRING   storage engine to use for the test table {myisam,innodb,bdb,heap,ndbcluster,federated} [innodb]

  48. --mysql-engine-trx=STRING     whether storage engine used is transactional or not {yes,no,auto} [auto]

  49. --mysql-ssl=[on|off]          use SSL connections, if available in the client library [off]

  50. --myisam-max-rows=N           max-rows parameter for MyISAM tables [1000000]

  51. --mysql-create-options=STRING additional options passed to CREATE TABLE []

说明 :
常用参数
① 基本参数
--db-driver=mysql     对mysql进行 OLTP 基准测试
--mysql-host 、--mysql-port、--mysql-socket、--mysql-user、--mysql-password 这些是基本的参数我就不解释了
--mysql-db=xxx  压测的database,这里得指定一下
② oltp常用参数
--oltp-test-mode=complex/simple/nontrx  测试模式
--oltp-num-tables=10 oltp测试的表数量 0.4.10版本最大表数量16
--oltp-table-size=xxx  测试表的记录数

三、测试
① 测试准备:

  1. root@10.30.5.2:sysbench#./sysbench --num-threads=64 --max-requests=200000 --test=oltp --db-driver=mysql --mysql-user=root --mysql-host=10.30.22.2 --mysql-password=x --oltp-test-mode=complex --mysql-db=tab --oltp-table-size=5000000 --oltp-num-tables=16 prepare

  2. sysbench 0.4.12.10:  multi-threaded system evaluation benchmark


  3. Creating table 'sbtest14'...

  4. Creating table 'sbtest7'...

  5. Creating table 'sbtest'...

  6. Creating table 'sbtest11'...

  7. Creating table 'sbtest8'...

  8. Creating table 'sbtest6'...

  9. Creating table 'sbtest9'...

  10. Creating table 'sbtest12'...

  11. Creating table 'sbtest3'...

  12. Creating table 'sbtest15'...

  13. Creating table 'sbtest2'...

  14. Creating table 'sbtest4'...

  15. Creating table 'sbtest1'...

  16. Creating table 'sbtest5'...

  17. Creating table 'sbtest13'...

  18. Creating table 'sbtest10'...

  19. Creating 5000000 records in table 'sbtest11'...

  20. Creating 5000000 records in table 'sbtest1'...

  21. Creating 5000000 records in table 'sbtest14'...

  22. Creating 5000000 records in table 'sbtest'...

  23. Creating 5000000 records in table 'sbtest6'...

  24. Creating 5000000 records in table 'sbtest2'...

  25. Creating 5000000 records in table 'sbtest13'...

  26. Creating 5000000 records in table 'sbtest15'...

  27. Creating 5000000 records in table 'sbtest12'...

  28. Creating 5000000 records in table 'sbtest4'...

  29. Creating 5000000 records in table 'sbtest3'...

  30. Creating 5000000 records in table 'sbtest9'...

  31. Creating 5000000 records in table 'sbtest8'...

  32. Creating 5000000 records in table 'sbtest10'...

  33. Creating 5000000 records in table 'sbtest5'...

  34. Creating 5000000 records in table 'sbtest7'...

② 测试结果

点击(此处)折叠或打开

  1. root@10.30.5.2:sysbench# ./sysbench --num-threads=64 --max-requests=200000 --test=oltp --db-driver=mysql --mysql-user=root --mysql-host=10.30.22.xxx --mysql-password=xxx --oltp-test-mode=complex --mysql-db=tab --oltp-table-size=5000000 --oltp-num-tables=16 run

  2. sysbench 0.4.12.10:  multi-threaded system evaluation benchmark


  3. Running the test with following options:

  4. Number of threads: 64

  5. Random number generator seed is 0 and will be ignored



  6. Doing OLTP test.

  7. Running mixed OLTP test

  8. Using Special distribution (12 iterations,  1 pct of values are returned in 75 pct cases)

  9. Using "BEGIN" for starting transactions

  10. Using auto_inc on the id column

  11. Maximum number of requests for OLTP test is limited to 200000

  12. Using 16 test tables

  13. Threads started!

  14. Done.


  15. OLTP test statistics:

  16. queries performed:

  17. read:                            2800224

  18. write:                           1000080

  19. other:                           400032

  20. total:                           4200336

  21. transactions:                        200016 (2000.64 per sec.)

  22. deadlocks:                           0      (0.00 per sec.)

  23. read/write requests:                 3800304 (38012.16 per sec.)

  24. other operations:                    400032 (4001.28 per sec.)


  25. General statistics:

  26. total time:                          99.9760s

  27. total number of events:              200016

  28. total time taken by event execution: 6394.8091

  29. response time:

  30. min:                                 11.00ms

  31. avg:                                 31.97ms

  32. max:                                293.00ms

  33. approx.  95 percentile:              52.10ms


  34. Threads fairness:

  35. events (avg/stddev):           3125.2500/50.55

  36. execution time (avg/stddev):   99.9189/0.01

③ 测试清除

点击(此处)折叠或打开

  1. root@10.30.5.2:sysbench# ./sysbench --num-threads=64 --max-requests=200000 --test=oltp --db-driver=mysql --mysql-user=root --mysql-host=10.30.22.xxx --mysql-password=xxx --oltp-test-mode=complex --mysql-db=tab --oltp-table-size=5000000 --oltp-num-tables=16 cleanup

  2. sysbench 0.4.12.10:  multi-threaded system evaluation benchmark


  3. Dropping table 'sbtest'...

  4. Dropping table 'sbtest1'...

  5. Dropping table 'sbtest2'...

  6. Dropping table 'sbtest3'...

  7. Dropping table 'sbtest4'...

  8. Dropping table 'sbtest5'...

  9. Dropping table 'sbtest6'...

  10. Dropping table 'sbtest7'...

  11. Dropping table 'sbtest8'...

  12. Dropping table 'sbtest9'...

  13. Dropping table 'sbtest10'...

  14. Dropping table 'sbtest11'...

  15. Dropping table 'sbtest12'...

  16. Dropping table 'sbtest13'...

  17. Dropping table 'sbtest14'...

  18. Dropping table 'sbtest15'...

  19. Done.


总结
1> PREPARE阶段
   在 PREPARE 阶段我们就需要想好,此时mysql 的配置,如 innodb_flush_log_at_trx_commit 、 sync_binlog 以及BP 的大小等。
   然后结合 BP 的大小我们需要创建表的记录数,表的个数,并发线程等,综合考虑
   ① 若数据量 < BP 所有数据都会缓存到内存,此时增加 并发线程数 来测整个此时的CPU核数是否能抗住测试压力
   ② 若数据量 >> BP 则主要测试整个系统的稳定性,我们可以结合监控看缓存命中率( orzdba ),以及对应的 磁盘IO( iOStat / orzdba ) 等,来获取整个数据库系统的薄弱点

2> RUN 阶段
    在 RUN 阶段的同时 ,我们可以通过 orzdba/iostat 等工具查看当前的数据库状态
    ① 上面的测试结果我们可以看到,    
     transactions: 200016 (2000.64 per sec.) TPS 大概为 2000
     read/write requests: 3800304 (38012.16 per sec.) QPS 达到 38000
     approx. 95 percentile: 52.10ms  95%的请求相应时间在52.10ms左右
    可以说性能是相当不错了(这里我测试的是腾讯云 CDB , 配置为 1000MB 的BP )
    ② 通过orzdba 结合running过程查看数据库状态

点击(此处)折叠或打开

  1. root@10.30.5.2:orzdba_home# ./orzdba -mysql -innodb -rt

  2. .=================================================.

  3. |       Welcome to use the orzdba tool !          |

  4. |          Yep...Chinese English~                 |

  5. '=============== Date : 2017-04-18 ==============='


  6. HOST: 10.30.22.2   IP: 10.30.5.2

  7. DB  : performance_schema|tab

  8. Var : binlog_format[MIXED] max_binlog_cache_size[17179869184G] max_binlog_size[1G]

  9. max_connect_errors[999999999] max_connections[800] max_user_connections[0]

  10. open_files_limit[102400] sync_binlog[0] table_definition_cache[768]

  11. table_open_cache[512] thread_cache_size[512]


  12. innodb_adaptive_flushing[ON] innodb_adaptive_hash_index[ON] innodb_buffer_pool_size[893M]

  13. innodb_file_per_table[ON] innodb_flush_log_at_trx_commit[2] innodb_flush_method[O_DIRECT]

  14. innodb_io_capacity[20000] innodb_lock_wait_timeout[7200] innodb_log_buffer_size[64M]

  15. innodb_log_file_size[500M] innodb_log_files_in_group[2] innodb_max_dirty_pages_pct[75]

  16. innodb_open_files[1024] innodb_read_io_threads[4] innodb_thread_concurrency[0]

  17. innodb_write_io_threads[4]


  18. --------                     -QPS- -TPS-         -Hit%- ---innodb bp pages status-- -----innodb data status---- --innodb log--   his --log(byte)--  read ---query--- ------threads------ -----bytes---- --------tcprstat(us)--------

  19. time  |  ins   upd   del    sel   iud|     lor    hit|   data   free  dirty flush| reads writes  read written|fsyncs written| list uflush  uckpt  view inside  que| run  con  cre  cac|   recv   send|  count    avg 95-avg 99-avg|

  20. 17:24:53|    0     0     0      0     0|       0 100.00|      0      0      0     0|     0      0      0      0|     0       0|    0      0      0     0     0     0|   0    0    0    0|      0      0|      0      0      0      0|

  21. 17:24:54| 2153  6454  2153  30115 10760|  478891  97.72|  55869      0  19432  2372| 11355   6686 177.4m  79.2m|     2    5.1m|  137   1.7m  180.6m   57     0     0|  20   68    0    1|   1.1m  10.7m|  23711    267    183    236|

  22. 17:24:55| 1960  5891  1962  27470  9813|  437599  97.71|  55872      0  19793  2132| 10416   6063 162.8m  71.4m|     1    4.8m|  142   2.4m  183.5m   62     0     0|  14   68    0    1|  1005k   9.7m|  23004    356    215    283|

  23. 17:24:56| 2027  6091  2033  28422 10151|  451846  97.74|  55870      0  20024  2249| 10609   6320 165.8m  75.2m|     3    4.9m|  133   927k  186.5m   59     0     0|   8   68    0    1|   1.0m  10.2m|  22684    299    186    244|

  24. 17:24:57| 2291  6865  2286  32067 11442|  511514  97.69|  55870      0  20248  2611| 12314   7194 192.4m  87.0m|     2    5.4m|  128    19k  189.6m   54     0     0|   4   68    0    1|   1.1m  11.5m|  25197    267    188    234|

  25. 17:24:58| 2210  6632  2207  30947 11049|  493747  97.77|  55865      0  20361  2371| 11478   6810 179.3m  79.5m|     2    5.4m|  130   267k  192.9m   64     0     0|  48   68    0    1|   1.1m  11.3m|  24586    270    182    232|

  26. 17:24:59| 2225  6680  2226  31102 11131|  496716  97.70|  55866      0  20305  2602| 11891   7059 185.8m  86.6m|     1    5.3m|  149   473k  196.0m   53     0     0|  11   68    0    1|   1.1m  11.3m|  20655    371    219    304|

  27. 17:25:00| 2126  6377  2130  29819 10633|  472984  97.70|  55868      0  20195  2489| 11332   6749 177.1m  82.8m|     2    5.0m|  125   370k  199.0m   62     0     0|  13   68    0    1|   1.1m  10.8m|   8707    958    664    856|

  28. 17:25:01| 2169  6507  2165  30307 10841|  484346  97.71|  55766     99  20214  2485| 11550   6849 180.5m  82.7m|     1    5.1m|  133   808k  202.0m   57     0     0|  15   68    0    1|   1.1m  11.2m|   8578    996    636    844|

    可以发现 在 32个 thread并发进行complex操作的时候,每秒的insert量 update量 delete量 select量可以看得非常清楚,还有innodb_log 的fsync量,以及数据库的response time。

感谢各位的阅读!关于“MySQL如何使用sysbench做OLTP基准测试”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!

您可能感兴趣的文档:

--结束END--

本文标题: MySQL如何使用sysbench做OLTP基准测试

本文链接: https://www.lsjlt.com/news/63226.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
  • MySQL如何使用sysbench做OLTP基准测试
    这篇文章给大家分享的是有关MySQL如何使用sysbench做OLTP基准测试的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。 一、 安装① 下载源码...
    99+
    2024-04-02
  • 如何使用sysbench做oltp测试
    小编给大家分享一下如何使用sysbench做oltp测试,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!sysbench是一款开源...
    99+
    2024-04-02
  • 如何理解MySQL基准测试和sysbench工具
    如何理解MySQL基准测试和sysbench工具,针对这个问题,这篇文章详细介绍了相对应的分析和解答,希望可以帮助更多想解决这个问题的小伙伴找到更简单易行的方法。前言作为一名后台开发,对数据库进行基准测试,...
    99+
    2024-04-02
  • 如何使用sysbench测试Mysql性能
    这篇文章主要介绍了如何使用sysbench测试Mysql性能,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。 s...
    99+
    2024-04-02
  • 服务器基准测试实践:SysBench的搭建与基本使用
    🏆作者简介,黑夜开发者,CSDN领军人物,全栈领域优质创作者✌,CSDN博客专家,阿里云社区专家博主,2023年6月CSDN上海赛道top4。 🏆数年电商行业从业...
    99+
    2023-09-13
    服务器 数据库 运维 SysBench 基准测试 原力计划
  • 怎么使用HammerDB进行MySQL基准测试
    使用HammerDB进行MySQL基准测试的步骤如下: 首先,下载并安装HammerDB。你可以在HammerDB的官方网站(h...
    99+
    2023-10-24
    HammerDB MySQL
  • MySQL中怎么使用hammerdb进行基准测试
    今天就跟大家聊聊有关MySQL中怎么使用hammerdb进行基准测试,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。root@master /usr/...
    99+
    2024-04-02
  • Mysql常用基准测试命令总结
    mysqlslap 常用参数说明 –auto-generate-sql 由系统自动生成sql脚本进行测试 –auto-generate-sql-add-autoincrement 在生成的表中增...
    99+
    2024-04-02
  • 如何使用基准测试优化golang函数性能
    基准测试是优化 go 函数性能的有效工具。基准测试语法包括:创建基准测试函数(以 benchmarkxxx 命名)、重置计时器(b.resettimer())、报告内存分配(b.repo...
    99+
    2024-04-27
    golang 函数性能
  • 如何使用BenchmarkDotNet对C#代码进行基准测试
    这篇文章给大家分享的是有关如何使用BenchmarkDotNet对C#代码进行基准测试的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。BenchmarkDotNet 是一个轻量级,开源的,强大的 .NET 工具包,...
    99+
    2023-06-14
  • Mysql常用基准测试工具是什么
    小编给大家分享一下Mysql常用基准测试工具是什么,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!mysqlslap常用参数说明–auto-generate-sql 由系统自动生成sql脚本...
    99+
    2024-04-02
  • MySQL中 sysbench如何使用
    MySQL中 sysbench如何使用,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。sysbench  mysql,...
    99+
    2024-04-02
  • MySQL基准压力测试工具MySQLSlap怎么用
    小编给大家分享一下MySQL基准压力测试工具MySQLSlap怎么用,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!常用的解释:[...
    99+
    2024-04-02
  • MySQL 基准测试工具tpcc-mysql使用手册及报告分析
    〇 下载安装 git clone https://github.com/Percona-Lab/tpcc-mysql.git cd tpcc-mysql/sr...
    99+
    2024-04-02
  • MySQL压力测试中如何定制sysbench的Lua模板
    本篇内容介绍了“MySQL压力测试中如何定制sysbench的Lua模板”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能...
    99+
    2024-04-02
  • 使用 BenchmarkDotNet 对 C# 代码进行基准测试
    目录安装 BenchmarkDotNet 什么是基准测试 创建基准测试代码 运行 benchmark BenchmarkDotNet 是一个轻量级,开源的,强大的 .NET 工具包,...
    99+
    2024-04-02
  • Java微基准测试框架JMH怎么使用
    使用Java微基准测试框架JMH需要按照以下步骤进行:1. 创建一个Java项目,并将JMH依赖添加到项目的构建文件中(例如,Mav...
    99+
    2023-09-22
    Java JMH
  • 如何在安装与使用sysbench数据库性能测试工具
    这篇文章将为大家详细讲解有关如何在安装与使用sysbench数据库性能测试工具,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。1.简介和安装sysbench是...
    99+
    2024-04-02
  • 如何使用开源测试工具RunnerGo做自动化测试
    以下是使用开源测试工具RunnerGo进行自动化测试的步骤:1. 安装RunnerGo:首先,需要从RunnerGo的官方网站(ht...
    99+
    2023-09-21
    RunnerGo
  • Java使用JMH进行基准性能测试分析
    本篇内容主要讲解“Java使用JMH进行基准性能测试分析”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“Java使用JMH进行基准性能测试分析”吧!一、前言在日常开发工作当中,开发人员可能有这些困...
    99+
    2023-06-25
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作