benchmark: update to use new wrk
authorTimothy J Fontaine <tjfontaine@gmail.com>
Tue, 25 Feb 2014 19:05:54 +0000 (11:05 -0800)
committerTimothy J Fontaine <tjfontaine@gmail.com>
Tue, 25 Feb 2014 19:28:46 +0000 (11:28 -0800)
benchmark/http/chunked.js
benchmark/http/cluster.js
benchmark/http/end-vs-write-end.js
benchmark/http/simple.js

index bead074..0589ff3 100644 (file)
@@ -21,7 +21,7 @@ function main(conf) {
   var chunk = new Buffer(conf.size);
   chunk.fill('8');
 
-  var args = ['-r', 5000, '-t', 8, '-c', conf.c];
+  var args = ['-d', '10s', '-t', 8, '-c', conf.c];
 
   var server = http.createServer(function(req, res) {
     function send(left) {
index 12bb8d5..6391704 100644 (file)
@@ -26,8 +26,7 @@ function main(conf) {
 
     setTimeout(function() {
       var path = '/' + conf.type + '/' + conf.length;
-      var args = ['-r', '-t', 5, '-c', conf.c, '-k'];
-      var args = ['-r', 5000, '-t', 8, '-c', conf.c];
+      var args = ['-d', '10s', '-t', 8, '-c', conf.c];
 
       bench.http(path, args, function() {
         w1.destroy();
index 06fce6f..973f23a 100644 (file)
@@ -45,7 +45,7 @@ function main(conf) {
   }
 
   var method = conf.method === 'write' ? write : end;
-  var args = ['-r', 5000, '-t', 8, '-c', conf.c];
+  var args = ['-d', '10s', '-t', 8, '-c', conf.c];
 
   var server = http.createServer(function(req, res) {
     method(res);
index 13af966..5bff928 100644 (file)
@@ -15,7 +15,7 @@ function main(conf) {
   var server = require('../http_simple.js');
   setTimeout(function() {
     var path = '/' + conf.type + '/' + conf.length + '/' + conf.chunks;
-    var args = ['-r', 5000, '-t', 8, '-c', conf.c];
+    var args = ['-d', '10s', '-t', 8, '-c', conf.c];
 
     bench.http(path, args, function() {
       server.close();