mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
7 lines
119 B
Bash
7 lines
119 B
Bash
![]() |
bundle exec bin/puma -t 5 test/rackup/hello.ru &
|
||
|
PID1=$!
|
||
|
sleep 5
|
||
|
wrk -c 10 --latency http://localhost:9292
|
||
|
|
||
|
kill $PID1
|