将循环JSON传递给节点中的集群

时间:2015-03-02 12:01:53

标签: json node.js fork sequelize.js node-cluster

我想与Sequelize合作获得一个多进程节点。 由于你不能调用Sequelize的同步方法来让你的orm准备多次(数据库锁定),我决定在主集群上调用sync方法。完成后,将进程分叉以匹配CPU计数。

但我显然无法在福克斯中分享全局变量,如果我尝试通过环境(http://nodejs.org/api/cluster.html#cluster_cluster_fork_env)或worker.message(data)process.on传递Sequelize变量(http://nodejs.org/api/cluster.html#cluster_worker_send_message_sendhandle),它不会发送循环JSON ..

所以我想知道如何将复杂/循环对象传递给子进程。

有没有人有任何想法?

0 个答案:

没有答案