标签:str 框架 bin space 模拟 执行 table 网站测试 ext
大家应该都有听过,nodejs性能优越,并发也很好之类的话,那我们用Apache ab对node这个空框架测试一下,然后再对一些网站测试一下,或或少一定的参考意义把。
Apache ab测试工具是模拟多线程并发请求,就是有n多请求同时向服务器发送,同时也使得ab成为某些网络攻击的工具。
话不多少,直接开始吧。
先启动一个web服务器,保证请求的通畅。
1
2
3
4
5
6
|
var http = require( ‘http‘ ); http.createServer( function (request, response) { response.writeHead(200, { ‘Content-Type‘ : ‘text/plain‘ }); response.end( ‘Hello node\n‘ ); }).listen(8888); console.log( ‘Server running at http://127.0.0.1:8888/‘ ); |
我是在windowds系统下测试的,进入apache的安装目录下的bin,执行如下指令。
说明:
-n1000:发出1000个请求;
-c10 :10次并发
结果:
同样,用这个方式去请求一些网站,看看结果,做一个对比,这里就不做展示了。
标签:str 框架 bin space 模拟 执行 table 网站测试 ext
原文地址:https://www.cnblogs.com/eer123/p/9037605.html