Re: [nodejs] Re: multiple applications in single node.js process

2012-10-16 Thread Michal Kruk
Actually chrome has multiple processes running, i think its creating one for every tab you have open On Mon, Oct 15, 2012 at 8:44 PM, Alexey Guskov kvasdo...@gmail.com wrote: By the way, i believe the way google chrome deals with multiple pages and browser addons is very similar to what i'm

[nodejs] Re: multiple applications in single node.js process

2012-10-15 Thread Alexey Guskov
By the way, i believe the way google chrome deals with multiple pages and browser addons is very similar to what i'm trying to achieve: isolated js vm instances inside a single process. If anyone knows chrome internals, please correct me. суббота, 13 октября 2012 г., 13:29:17 UTC+4

[nodejs] Re: multiple applications in single node.js process

2012-10-13 Thread Bradley Meck
Isolates were taken a look at a while ago. They are similar to what you want, but still unable to do so. It would generally be more sane to just scale out processes was what was decided. The edge cases of giving multiple light weight isolates proved to be very difficult to prevent Isolates