作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我是 node.js 的新手,我尝试使用 setTimeout 来模拟长连接并希望它异步运行。
var http = require('http');
http.createServer(function (request, response) {
console.log('New request @ ' + request.url);
(function (response) {
setTimeout(function () {
console.log('Time is up');
response.writeHead(200, {"Content-Type": "text/plain"});
response.end('Hello World\n');
}, 3000);
})(response);
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
但是,上面的代码执行起来就像一个同步单线程应用程序,每 3 秒只能处理一个请求。
我认为 node.js 中的所有内容都应该异步运行。那么,这里的问题是什么?
最佳答案
SetTimeout
是异步的,你不需要中间那个匿名函数,只写这个。
var http = require('http');
http.createServer(function (request, response) {
console.log('New request @ ' + request.url);
setTimeout(function () {
console.log('Time is up');
response.writeHead(200, {"Content-Type": "text/plain"});
response.end('Hello World\n');
}, 3000);
}).listen(8124);
console.log('Server running at http://127.0.0.1:8124/');
如果您产生 10 个并发请求,则总计算时间将在 3 秒左右,这意味着它是异步的。可以使用ab工具检查,或者如果你编程node,可能更容易安装http-perf .并运行 nperf -c 10 -n 10 http://127.0.0.1:8124
关于node.js - 如何在node.js中异步使用setTimeout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13971255/
我是一名优秀的程序员,十分优秀!