From: isaacs Date: Tue, 10 Apr 2012 21:59:21 +0000 (-0700) Subject: Add switches to http_simple bench to use domains X-Git-Tag: v0.7.8~9^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=45c1d4f96f48c30bd3036938fb922e050e76c2e0;p=platform%2Fupstream%2Fnodejs.git Add switches to http_simple bench to use domains --- diff --git a/benchmark/http.sh b/benchmark/http.sh index 22b4b7c8c..40d0c714c 100755 --- a/benchmark/http.sh +++ b/benchmark/http.sh @@ -4,7 +4,9 @@ sudo sysctl -w net.inet.ip.portrange.first=12000 sudo sysctl -w net.inet.tcp.msl=1000 sudo sysctl -w kern.maxfiles=1000000 kern.maxfilesperproc=1000000 ulimit -n 100000 + ./node benchmark/http_simple.js || exit 1 & sleep 1 -ab -n 30000 -c 100 http://127.0.0.1:8000/bytes/123 | grep Req + +ab -n 30000 -c 100 http://127.0.0.1:8000/${TYPE:-bytes}/${LENGTH:-1024} | grep Req killall node diff --git a/benchmark/http_simple.js b/benchmark/http_simple.js index 74ba4d776..bd0a1c836 100644 --- a/benchmark/http_simple.js +++ b/benchmark/http_simple.js @@ -14,7 +14,27 @@ for (var i = 0; i < 20*1024; i++) { stored = {}; storedBuffer = {}; +var useDomains = process.env.NODE_USE_DOMAINS; + +// set up one global domain. +if (useDomains) { + var domain = require('domain'); + var gdom = domain.create(); + gdom.on('error', function(er) { + console.log('Error on global domain', er); + throw er; + }); + gdom.enter(); +} + var server = http.createServer(function (req, res) { + + if (useDomains) { + var dom = domain.create(); + dom.add(req); + dom.add(res); + } + var commands = req.url.split("/"); var command = commands[1]; var body = "";