Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

The data is being written to the db, or being crunched, while the request is ending, and the browser can continue with the important stuff.

It sounds like a good fit for NodeJS for sure, but for what it's worth, even in a synchronous web framework nothing forces you to keep the connection open until the request has been processed.

I don't know off-hand how to do it in Rails, but say in Java Servlet-based frameworks you'd just call HttpServletResponse.close().



The point is that the rack middleware would be called for everything, which is very heavy for something so trivial


I didn't mean to imply that NodeJS isn't the best fit for the problem at hand. I was just trying to clarify that it doesn't take an asynchronous framework like Node to keep processing a request after the connection is closed.


Yeah, even with a simple Perl CGI, all you have to do is close STDOUT if you want the HTTP response to end, but continue processing the request.


Of course, it's trivial to write request methods that bypass the rack middleware in Rails.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: