Socket.io, cluster, express and sync events
I have a big problem sice 1 week. I try to convert my node.JS project actually run on single core to multi core with cluster. With websockets, at this moment, i have no problems for events but, for xhr-polling or jsonp-polling, i have big problems with socket.io on cluster mode. this is my server configuration : 00-generic.js 'use strict'; var http = require('http'), os = require('os'), cluster = require('cluster'); module.exports = function(done) { var app = this.express, port = process.env.PORT || 3000, address = '0.0.0.0'; if(this.env == 'test'){ port = 3030; } var self = this; var size =