| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
jopen
12年前发布

Simperf :一个简单的Java性能测试框架

Simperf 是一个简单的性能测试工具,它提供了一个多线程测试框架

Example:

1. 在代码里使用Simperf

Simperf perf = new Simperf(50, 2000, 1000,       new SimperfThreadFactory() {          public SimperfThread newThread() {              return new SimperfThread();          }      });  // 设置结果输出文件,默认 simperf-result.log  perf.getMonitorThread().setLogFile("simperf.log");  // 开始性能测试  perf.start();

2. 在命令行里使用Simperf

public class SimperfCommandTest {      public static void main(String[] args) {          SimperfCommand simCommand = new SimperfCommand(args);          Simperf perf = simCommand.create();          if (perf == null) {              // 参数解析失败时会返回null              System.exit(-1);          }          perf.start(new SimperfThreadFactory() {              public SimperfThread newThread() {                  return new SimperfThread();              }          });      }  }

执行命令:

java SimperfCommandTest -t 10 -c 10 -i 1000  参数说明:  usage: SimperfCommand options   -c,--count       [*] number of each thread requests count   -i,--interval    [ ] interval of print messages, default 1000   -j               [ ] generate jtl report   -l,--log         [ ] log filename   -m,--maxtps      [ ] max tps   -t,--thread      [*] number of thread count

3. 在Junit4里使用Simperf

public class SimperfTestCaseTest extends SimperfTestCase {      private Random              rand;      @Test      @Simperf(thread = 2, count = 5, interval = 1000)      public void testXxx() {          try {              Thread.sleep(1000);          } catch (Exception e) {          }          boolean result = rand.nextInt(10) > 1;          Assert.assertTrue("随机生成结果", result);      }  }

项目主页:http://www.open-open.com/lib/view/home/1357308306043

 本文由用户 jopen 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1357308306043.html
Simperf 性能测试和优化