-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.sh
48 lines (41 loc) · 1.25 KB
/
run.sh
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
44
45
46
47
48
clear
set +v
echo ------------------------
echo BENCHMARK: ab -q -n 1000 -c 5
echo ------------------------
echo
echo
echo ------------------------
echo Zend framework
echo ------------------------
ab -q -n 1000 -c 5 http://localhost/benchmark/zend/test/public/ | grep "Requests per second"
echo
echo
echo ------------------------
echo Kohana framework
echo ------------------------
ab -q -n 1000 -c 5 http://localhost/benchmark/kohana/index.php/say/hello | grep "Requests per second"
echo
echo
echo ------------------------
echo CodeIgniter framework
echo ------------------------
ab -q -n 1000 -c 5 http://localhost/benchmark/codeigniter/index.php/say/hello | grep "Requests per second"
echo
echo
echo ------------------------
echo Yii framework
echo ------------------------
ab -q -n 1000 -c 5 http://localhost/benchmark/yii/index.php?r=say/hello | grep "Requests per second"
echo
echo
echo ------------------------
echo YAF
echo ------------------------
ab -q -n 1000 -c 5 http://localhost/benchmark/yaf/ | grep "Requests per second"
echo
echo
echo ------------------------
echo Phalcon framework
echo ------------------------
ab -q -n 1000 -c 5 http://localhost/benchmark/phalcon/?_url=say/hello | grep "Requests per second"