You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
// Include the cluster modulevarcluster=require('cluster');// Code to run if we're in the master processif(cluster.isMaster){varcpuCount=require('os').cpus().length;// Create a worker for each CPUfor(vari=0;i<cpuCount;i+=1){cluster.fork();}// Code to run if we're in a worker process}else{// Include Expressvarexpress=require('express');// Create a new Express applicationvarapp=express();// Add a basic route – index pageapp.get('/',function(req,res){res.send('Hello World!');});// Bind to a portapp.listen(3000);console.log('Application running!');}
The text was updated successfully, but these errors were encountered:
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/)
The text was updated successfully, but these errors were encountered: