I have a scenario where multiple node apps must be executed in embedded environment. Loading time is one of the crucial factor and I am wondering if running the apps in separate child processes (using child_process.fork) is faster than running them in independent node processes. Any ideas?
A related question. Does child_process.fork() use copy-on-write?