当前位置: 首页 > 工具软件 > hi-nginx > 使用案例 >

hi nginx java_hi-nginx-java并发性能一窥

乐正瑞
2023-12-01

欲知hi-nginx-java的并发性能,用jmeter进行测试便知一二。

设定用户数为100000,循环次数为100,ramp-up perio为2:

请求地址为http://localhost/test.java。该地址对应的servlet如下:

复制代码

1    private static hi.route r = hi.route.get_instance();

2

3    public jdemo() {

4        jdemo.r.get("^/(hello|test)/?$", (hi.request req, hi.response res, Matcher m) -> {

5            this.do_hello(req, res);

6        });

7    }

8

9    public void handler(hi.request req, hi.response res) {

10        jdemo.r.run(req, res);

11    }

12

13    private void do_hello(hi.request req, hi.response res) {

14        res.set_content_type("text/plain;charset=UTF-8");

15        res.set_cookie("test-k", "test-v", "Max-Age=3; Path=/");

16        res.status = 200;

17        res.content = "hello,world";

18    }

复制代码

龙华大道1号 http://www.kinghill.cn/Dynamics/2106.html

 类似资料: