You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 27, 2022. It is now read-only.
I am trying to get my hands on the forked workers but I can't seem to find a way. I've looked at the code and it appears that the workers are spawned and forgotten.
Is this correct? If so would it be possible to add handles and a method to access them?
I appologize if I'm missing something obvious, I'm new to node.js processes.
The text was updated successfully, but these errors were encountered:
it is not possible to access the worker processes itself as they do not share memory with the master.
What you maybe can do is to start a repl on each worker on a different port and then expose functionality on cluster-master to connect to these. Otherwise you could connect manually to it
cheers
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I am trying to get my hands on the forked workers but I can't seem to find a way. I've looked at the code and it appears that the workers are spawned and forgotten.
Is this correct? If so would it be possible to add handles and a method to access them?
I appologize if I'm missing something obvious, I'm new to node.js processes.
The text was updated successfully, but these errors were encountered: