-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.bat
48 lines (41 loc) · 1.3 KB
/
run.bat
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
cls
@ECHO off
@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"