Child process maximum limit
问题 I want to compute the size of folder (i used readdirp module). For large folder the operation blocks my main thread so my electron application hangs. So i moved size computation process to forked child. since i have array of folders, i looping and forking new child process, on every iteration. These child Nodes are still whole new instances of V8. Assume at least 30ms startup and 10mb memory for each new Node. That is, you cannot create many thousands of them. I have studied somewhere. so how