senecajs / senecajs.org

Documentation site for Seneca.js
MIT License
28 stars 52 forks source link

cluster is not working #258

Open nsiitk opened 8 years ago

nsiitk commented 8 years ago

cluster as default plugin is true but I don't see process fork for this. internals.cluster function never gets called.

var seneca = require('seneca')() seneca.ready(function () { seneca.use(rules).listen() });

mcdonnelldean commented 8 years ago

@nsiitk This was a mistake in the previous version. Cluster is not considered a default plugin and will need to be loaded using npm install seneca-cluster and seneca.use('cluster', opts).