koa-lite/benchmarks/run
2015-02-05 16:29:32 +08:00

16 lines
206 B
Bash
Executable file

#!/usr/bin/env bash
echo
MW=$1 node --harmony $2 &
pid=$!
sleep 2
wrk 'http://localhost:3333/?foo[bar]=baz' \
-d 3 \
-c 50 \
-t 8 \
| grep 'Requests/sec' \
| awk '{ print " " $2 }'
kill $pid