forked from TechEmpower/FrameworkBenchmarks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbenchmark_config.json
More file actions
113 lines (113 loc) · 3 KB
/
benchmark_config.json
File metadata and controls
113 lines (113 loc) · 3 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"framework": "aiohttp",
"tests": [{
"default": {
"json_url": "/json",
"db_url": "/db",
"query_url": "/queries/",
"fortune_url": "/fortunes",
"update_url": "/updates/",
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Micro",
"database": "Postgres",
"framework": "aiohttp",
"language": "Python",
"flavor": "Python3",
"orm": "Raw",
"platform": "asyncio",
"webserver": "None",
"os": "Linux",
"database_os": "Linux",
"display_name": "aiohttp",
"notes": "uses asyncpg for database access"
},
"pypy": {
"json_url": "/json",
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Micro",
"database": "Postgres",
"framework": "aiohttp",
"language": "Python",
"flavor": "Pypy3",
"orm": "Raw",
"platform": "asyncio",
"webserver": "None",
"os": "Linux",
"database_os": "Linux",
"display_name": "aiohttp-pypy",
"notes": "uses Pypy instead of CPython",
"versus": "default"
},
"nginx": {
"json_url": "/json",
"db_url": "/db",
"query_url": "/queries/",
"fortune_url": "/fortunes",
"update_url": "/updates/",
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Micro",
"database": "Postgres",
"framework": "aiohttp",
"language": "Python",
"flavor": "Python3",
"orm": "Raw",
"platform": "asyncio",
"webserver": "nginx",
"os": "Linux",
"database_os": "Linux",
"display_name": "aiohttp-nginx",
"notes": "uses nginx as proxy",
"versus": "default"
},
"gunicorn": {
"json_url": "/json",
"db_url": "/db",
"query_url": "/queries/",
"fortune_url": "/fortunes",
"update_url": "/updates/",
"plaintext_url": "/plaintext",
"port": 8080,
"approach": "Realistic",
"classification": "Micro",
"database": "Postgres",
"framework": "aiohttp",
"language": "Python",
"flavor": "Python3",
"orm": "Raw",
"platform": "asyncio",
"webserver": "gunicorn",
"os": "Linux",
"database_os": "Linux",
"display_name": "aiohttp-gunicorn",
"notes": "uses gunicorn as proxy server",
"versus": "default"
},
"orm": {
"db_url": "/db",
"query_url": "/queries/",
"fortune_url": "/fortunes",
"update_url": "/updates/",
"port": 8080,
"approach": "Realistic",
"classification": "Micro",
"database": "Postgres",
"framework": "aiohttp",
"language": "Python",
"flavor": "Python3",
"orm": "Full",
"platform": "asyncio",
"webserver": "None",
"os": "Linux",
"database_os": "Linux",
"display_name": "aiohttp-orm",
"notes": "uses sqlalchemy for database access",
"versus": "default"
}
}]
}