Skip to content

Instantly share code, notes, and snippets.

@adnils
Forked from nf/hello-node.js
Created April 16, 2014 09:17
Show Gist options
  • Save adnils/10839091 to your computer and use it in GitHub Desktop.
Save adnils/10839091 to your computer and use it in GitHub Desktop.
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