微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

用wrk对golang/nodejs/nginx做性能测试对比

sudo taskset -c 1 ./wrk -c1 -t1 -d30 http://localhost/hello

wrk+Nginx(helloworld module)
    sudo taskset -c 0 sbin/Nginx
    Nginx: cpu:76%
    wrk: cpu:70%
    Running 30s test @ http://localhost/hello
      1 threads and 1 connections
      Thread Stats   Avg      Stdev     Max   +/- Stdev
        Latency    61.55us   27.57us   4.30ms   99.28%
        Req/Sec    11.58k   682.50    14.44k    76.94%
      325276 requests in 30.00s,48.69MB read
    Requests/sec:  10842.55
    Transfer/sec:      1.62MB

wrk+golang (77%)
    Nginx: cpu:70%
    wrk: cpu:47%
    Running 30s test @ http://localhost/hello
      1 threads and 1 connections
      Thread Stats   Avg      Stdev     Max   +/- Stdev
        Latency    95.75us  122.18us  17.59ms   99.33%
        Req/Sec     8.77k   665.39     9.78k    68.18%
      247829 requests in 30.00s,35.92MB read
    Requests/sec:   8261.07
    Transfer/sec:      1.20MB

wrk+nodejs (79%)
    sudo taskset -c 0 nodejs nodejs_httpserver.js
    nodejs: cpu:99%
    wrk: cpu:42%
    Running 30s test @ http://localhost/hello
      1 threads and 1 connections
      Thread Stats   Avg      Stdev     Max   +/- Stdev
        Latency    95.52us   56.77us   6.41ms   99.50%
        Req/Sec     9.03k   632.66     9.78k    93.76%
      255071 requests in 30.00s,31.38MB read
    Requests/sec:   8502.58
    Transfer/sec:      1.05MB

原文地址:https://www.jb51.cc/go/190407.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐