2e62cc675b
This makes the server.js file fork workers for the number of CPUs on the system. Each worker will then bind to the MongoDB and Express ports. They are really all using the same connection through the master process, but this lets the logic happen in seperate threads. I do worry that we may see more VersionErrors if one user makes more concurrent API requests. That really isn't the fault of cluster though, as that issue still would have been present in the previous single-core version.