mirror of https://github.com/tidwall/evio.git
40 lines
956 B
Bash
Executable File
40 lines
956 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo ""
|
|
echo "--- BENCH HTTP START ---"
|
|
echo ""
|
|
|
|
cd $(dirname "${BASH_SOURCE[0]}")
|
|
function cleanup {
|
|
echo "--- BENCH HTTP DONE ---"
|
|
kill -9 $(jobs -rp)
|
|
wait $(jobs -rp) 2>/dev/null
|
|
}
|
|
trap cleanup EXIT
|
|
|
|
mkdir -p bin
|
|
$(pkill -9 net-http-server || printf "")
|
|
$(pkill -9 fasthttp-server || printf "")
|
|
$(pkill -9 iris-server || printf "")
|
|
$(pkill -9 evio-http-server || printf "")
|
|
|
|
function gobench {
|
|
echo "--- $1 ---"
|
|
if [ "$3" != "" ]; then
|
|
go build -o $2 $3
|
|
fi
|
|
NOPARSE=1 GOMAXPROCS=1 $2 --port $4 &
|
|
sleep 1
|
|
echo "*** 50 connections, 10 seconds"
|
|
wrk -t1 -c50 -d10 http://127.0.0.1:$4
|
|
echo "--- DONE ---"
|
|
echo ""
|
|
}
|
|
|
|
gobench "GO STDLIB" bin/net-http-server net-http-server/main.go 8081
|
|
gobench "IRIS" bin/iris-server iris-server/main.go 8082
|
|
gobench "FASTHTTP" bin/fasthttp-server fasthttp-server/main.go 8083
|
|
gobench "EVIO" bin/evio-http-server ../examples/http-server/main.go 8084
|