-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.sh
More file actions
executable file
·43 lines (41 loc) · 1.26 KB
/
Copy pathrun.sh
File metadata and controls
executable file
·43 lines (41 loc) · 1.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#!/usr/bin/env zsh
# for w in clojure clojurescript go js js-bun js-deno ruby rust
for w in clojure
do
cd $w
rm -f ./analytics.sqlite3
rm -f ./analytics.sqlite3-shm
rm -f ./analytics.sqlite3-wal
sqlite3 analytics.sqlite3 < ../sql/setup_sqlite.sql
make build 1>/dev/null
make serve 1>/dev/null &
SERVER_PID=$!
echo "sleeping for 10 seconds to let server start"
sleep 10
echo "benchmarking /hello"
wrk -t12 -c400 -d30 http://0.0.0.0:3030/hello > ../stats/${w}_hello.txt
echo "benchmarking /visit"
wrk -t12 -c400 -d30 http://0.0.0.0:3030/visit > ../stats/${w}_visit.txt
echo "benchmarking /stats"
wrk -t12 -c400 -d30 http://0.0.0.0:3030/stats > ../stats/${w}_stats.txt
kill $SERVER_PID
cd ..
done
# for w in rails
# do
# cd $w
# rm -f ./db/*.sqlite3*
# make build 1>/dev/null
# make serve 1>/dev/null &
# SERVER_PID=$!
# echo "sleeping for 10 seconds to let server start"
# sleep 10
# echo "benchmarking /hello"
# wrk -t12 -c400 -d30 http://0.0.0.0:3030/hello > ../stats/${w}_hello.txt
# echo "benchmarking /visit"
# wrk -t12 -c400 -d30 http://0.0.0.0:3030/visit > ../stats/${w}_visit.txt
# echo "benchmarking /stats"
# wrk -t12 -c400 -d30 http://0.0.0.0:3030/stats > ../stats/${w}_stats.txt
# kill $SERVER_PID
# cd ..
# done