I'm wondering if there is any way to pass a socket.io socket to a forked process in node.js, or reconstruct a socket.io socket in the forked process?
child = require("child_process").fork("worker.js")
io.sockets.on("connection", function(socket){
child.send("socket", socket); //this definitely fails now
})