Files
server/SpellChecker/node_modules/express/benchmarks/run
Alexey.Golubev 57a3997793 Собственно сами модули. См. http://habrahabr.ru/post/185200/
git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/nodeJSProjects@54067 954022d7-b5bf-4e40-9824-e11837661b57
2016-05-18 10:35:58 +03:00

17 lines
196 B
Bash

#!/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