Re: [nodejs] State of the art for request isolation in http servers?

2014-01-16 Thread Mikeal Rogers
The core team built domains specifically to tackle this problem. http://nodejs.org/api/domain.html Forrest and Domenic did a session about them at NodeConf last year, their materials are here: https://github.com/mikeal/nodeconf2013/tree/master/pkg/domains If you analyze the code you're workin

[nodejs] State of the art for request isolation in http servers?

2014-01-14 Thread Gregg Caines
Hey all... I'm wondering if anyone can point me to the current best-practice for isolating requests in a web app. In general I'm trying to solve the problem of keeping the server running despite bad code in a particular request. Are domains my only shot? Do they completely solve it? Does an