Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use multi threaded node.js app for Express benchmark #1

Open
PuKoren opened this issue Nov 11, 2015 · 4 comments
Open

Use multi threaded node.js app for Express benchmark #1

PuKoren opened this issue Nov 11, 2015 · 4 comments

Comments

@PuKoren
Copy link

PuKoren commented Nov 11, 2015

You are using only 1 core over the 32 available on the c3.8xlarge for the Express benchmark, while you compare with Crow and others in multi thread mode

It would be nice to update the express code to use fork method of Node.js

Code is quite easy (taken from http://rowanmanning.com/posts/node-cluster-and-express/)

// Include the cluster module
var cluster = require('cluster');

// Code to run if we're in the master process
if (cluster.isMaster) {

    var cpuCount = require('os').cpus().length;

    // Create a worker for each CPU
    for (var i = 0; i < cpuCount; i += 1) {
        cluster.fork();
    }
// Code to run if we're in a worker process
} else {

    // Include Express
    var express = require('express');

    // Create a new Express application
    var app = express();

    // Add a basic route – index page
    app.get('/', function (req, res) {
        res.send('Hello World!');
    });

    // Bind to a port
    app.listen(3000);
    console.log('Application running!');

}
@jkernech
Copy link

+1

3 similar comments
@justinholmes
Copy link

+1

@jan-osch
Copy link

+1

@ghost
Copy link

ghost commented Jan 11, 2018

+1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants