0.0.7 • Published 11 years ago

optimus v0.0.7

Weekly downloads
36
License
-
Repository
github
Last release
11 years ago

About

Optimus is a simple cluster manager for node.js, built off the native cluster module. Requires node v0.8.0 or higher.

Optimus receives a configuration object, which contains the names of applications to run, and the number of instances to spawn of each application.

The number of instances can either be a number, or the string "cpus". You can also perform multiplication on "cpus".

Here is an example of how to use optimus.

var optimus = require("optimus");

optimus.start({
  "myapp": 1,
  "dont_restart": {
    "count": 1,
    "autoRestart": false
  },
  "cleaner": "cpus*2",
  "myworker": "cpus"
}, __dirname);

See LICENSE for copyright info.

0.0.7

11 years ago

0.0.6

11 years ago

0.0.5

11 years ago

0.0.4

11 years ago

0.0.3

12 years ago

0.0.2

12 years ago

0.0.1

12 years ago