0.0.2 • Published 12 years ago
clustering v0.0.2
Clustering
A small cluster module with a plugin system
Install
npm install clusteringUsage
var clustering = require('clustering');
if(clustering.side == 'master')
clustering.spawn()
if(clustering.side == 'worker')
yourServer.listen(3000)And that will create a cluster running yourServer.
You can also use a plugin EG. use(clustering.watch()) (watches all files that are loaded)
API
use(plugin(Cluster))=> Use a plugin (execute it passing in the cluster)reload(full = false)=> Reload the workers, if full is true then also reload the masterkill(signal = 'SIGKILL')=> Killall the workers with signalside=> 'master' if it's the master, 'worker' if it's a worker
Plugins
watch(full = true)=> Automatically reload the cluster -full=> Whether or not to to a full restart