6d3b81fe50
closes #567 Fix benchmark middleware - in promises body is on ctx not on this
16 lines
196 B
Bash
Executable file
16 lines
196 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
echo
|
|
MW=$1 node $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
|