0
nodejs中的cluster
模塊有exit
,disconnect
和death
事件。爲了發出這樣的事件,工作人員應該調用哪些功能?nodejs - 集羣斷開/關閉
我已經試過cluster.worker.X()
其中要麼close
,end
,diconnect
等 與呼氣的同時,如何發出end
事件爲http.createServer()
?
感謝
nodejs中的cluster
模塊有exit
,disconnect
和death
事件。爲了發出這樣的事件,工作人員應該調用哪些功能?nodejs - 集羣斷開/關閉
我已經試過cluster.worker.X()
其中要麼close
,end
,diconnect
等 與呼氣的同時,如何發出end
事件爲http.createServer()
?
感謝
我不相信這些事件應該直接調用。它們的存在使我們能夠對集羣生命週期中的事件做出反應。以下是如何間接調用它們:
出口
// from the worker
process.exit()
斷開
// from the master
var worker = cluster.fork()
worker.disconnect()
死亡(不建議使用)
Renamed to 'exit'在v0.8.0(見上文) 。