0.0.0 • Published 11 years ago

band v0.0.0

Weekly downloads
2
License
MIT
Repository
github
Last release
11 years ago

band

Cluster management for nodejs.

That is my attempt to reinvent the wheel and to have a better appreciation and understanding of how clusters work in nodejs and what makes a good one.

If you need a multi-core management server, you should proably use cluster which seems pretty legit.

Installation

nodejs:

$ npm install band

Distribution

default

By default, band distributes work (not just tcp or http server) to a process on every available core of your server.

band(function() {
	//do something
});

band automatically fork a worker when a death occurs.