Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@nf
Created July 6, 2012 21:14
Show Gist options
  • Star 45 You must be signed in to star a gist
  • Fork 10 You must be signed in to fork a gist
  • Save nf/3062783 to your computer and use it in GitHub Desktop.
Save nf/3062783 to your computer and use it in GitHub Desktop.
Hello world web server that scales across multiple processors
var cluster = require('cluster');
var http = require('http');
var numCPUs = require('os').cpus().length;
if (cluster.isMaster) {
// Fork workers.
for (var i = 0; i < numCPUs; i++) {
cluster.fork();
}
cluster.on('exit', function(worker, code, signal) {
console.log('worker ' + worker.pid + ' died');
});
} else {
// Workers can share any TCP connection
// In this case its a HTTP server
http.createServer(function(req, res) {
res.writeHead(200);
res.end("hello world\n");
}).listen(8000);
}
package main
import (
"net/http"
"runtime"
)
func main() {
runtime.GOMAXPROCS(runtime.NumCPU())
handler := func(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("hello world\n"))
}
http.ListenAndServe(":8000", http.HandlerFunc(handler))
}
@gbbr
Copy link

gbbr commented Aug 12, 2014

👍

@evandertino
Copy link

wow :neckbeard:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment