Skip to content

Instantly share code, notes, and snippets.

@WillDent
Forked from nf/hello-node.js
Created July 7, 2012 03:53
Show Gist options
  • Save WillDent/3064447 to your computer and use it in GitHub Desktop.
Save WillDent/3064447 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))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment