Cheater - 2010-11-01 21:15:17
Why discuss node.js in this topic?
And altough seperating page layout into several requests and serving them as well to the browser CAN be a speedup, especially because the visitors can see things before all parts of the page are ready.
But with a lot of complete page requests (with the smaller calls after that) this technique can be a slowing issue, because the webserver does not have to serve 1 request, but it has to serve maybe 5 or 10 requests. Think about an increase of visitors... The request rate grows exponentially, which will slow down the web server at the last place. I would only recommend this technique when you have the right parts of the site optimized and correctly cached.