We have a node.js processes that are forking other node.js processes via child_process.fork
- on the same host. Communication between child and parent is done over child.send(message)
.
Now we want the master process to start not only node.js but also Java process. What do you think shall be the best way to communicate between Java and master node.js process on the same host?