This is one of the things that node.js is really good at, and it's interesting that the sample code on the front page of nodejs.org was pretty similar to this app. Here's the rough equivalent in node: require('http').createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); var time = Math.max(0, Math.min(60000, parseInt(request.url.slice(1)) || 0)); setTimeout(function() {…
> This is one of the things that node.js is really good at Why does every simple task motivate people to show some kind of "hello world" code in their favorite language and framework? This web service is just a tiny exercise that is easily realized with a few lines in any language (even C or Bash) using any web server. In particular, I don't see in how far this code demonstrates the strengths of node.js.
Really Slow Site for Testing HTTP Caches.
21–23 of 23 posts
Re: Really Slow Site for Testing HTTP Caches.
#22This is one of the things that node.js is really good at, and it's interesting that the sample code on the front page of nodejs.org was pretty similar to this app. Here's the rough equivalent in node: require('http').createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/plain'}); var time = Math.max(0, Math.min(60000, parseInt(request.url.slice(1)) || 0)); setTimeout(function() {…
> This is one of the things that node.js is really good at Why does every simple task motivate people to show some kind of "hello world" code in their favorite language and framework? This web service is just a tiny exercise that is easily realized with a few lines in any language (even C or Bash) using any web server. In particular, I don't see in how far this code demonstrates the strengths of node.js.
And I was just pointing out that this happened to be the official hello world for node.js.
Re: Really Slow Site for Testing HTTP Caches.
#23Earlier quoted context omitted.
> This is one of the things that node.js is really good at Why does every simple task motivate people to show some kind of "hello world" code in their favorite language and framework? This web service is just a tiny exercise that is easily realized with a few lines in any language (even C or Bash) using any web server. In particular, I don't see in how far this code demonstrates the strengths of node.js.
Perhaps because, though Sinatra is actually one of my favorite frameworks, it doesn't work very well for this. The author comments that it's limited to 10 seconds because each connection is handled by a blocking Thin. Eventmachine could also solve this problem, in a similar amount of code. And I was just pointing out that this happened to be the official hello world for node.js.