Skip to content

Commit 64ad7a7

Browse files
committed
Only run "updates" and "queries"
1 parent d351a4f commit 64ad7a7

File tree

3 files changed

+122
-96
lines changed

3 files changed

+122
-96
lines changed

frameworks/CSharp/aspnetcore/benchmark_config.json

Lines changed: 0 additions & 95 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,8 @@
44
"tests": [
55
{
66
"default": {
7-
"plaintext_url": "/plaintext",
8-
"json_url": "/json",
9-
"db_url": "/db",
107
"query_url": "/queries/",
11-
"fortune_url": "/fortunes",
128
"update_url": "/updates/",
13-
"cached_query_url": "/cached-worlds/",
149
"port": 8080,
1510
"approach": "Realistic",
1611
"classification": "Platform",
@@ -25,96 +20,6 @@
2520
"database_os": "Linux",
2621
"display_name": "ASP.NET Core [Platform]",
2722
"notes": ""
28-
},
29-
"aot": {
30-
"plaintext_url": "/plaintext",
31-
"json_url": "/json",
32-
"db_url": "/db",
33-
"query_url": "/queries/",
34-
"fortune_url": "/fortunes",
35-
"update_url": "/updates/",
36-
"cached_query_url": "/cached-worlds/",
37-
"port": 8080,
38-
"approach": "Realistic",
39-
"classification": "Platform",
40-
"database": "Postgres",
41-
"framework": "ASP.NET Core [Platform]",
42-
"language": "C#",
43-
"orm": "Raw",
44-
"platform": ".NET",
45-
"flavor": "NativeAOT",
46-
"webserver": "Kestrel",
47-
"os": "Linux",
48-
"database_os": "Linux",
49-
"display_name": "ASP.NET Core [Platform, AOT]",
50-
"notes": ""
51-
},
52-
"minimal": {
53-
"plaintext_url": "/plaintext",
54-
"json_url": "/json",
55-
"db_url": "/db",
56-
"query_url": "/queries/",
57-
"fortune_url": "/fortunes",
58-
"update_url": "/updates/",
59-
"port": 8080,
60-
"approach": "Realistic",
61-
"classification": "Micro",
62-
"database": "Postgres",
63-
"framework": "ASP.NET Core [Minimal APIs]",
64-
"language": "C#",
65-
"orm": "Micro",
66-
"platform": ".NET",
67-
"flavor": "CoreCLR",
68-
"webserver": "Kestrel",
69-
"os": "Linux",
70-
"database_os": "Linux",
71-
"display_name": "ASP.NET Core [Minimal APIs]",
72-
"notes": "",
73-
"versus": "aspnetcore"
74-
},
75-
"mvc": {
76-
"plaintext_url": "/plaintext",
77-
"json_url": "/json",
78-
"db_url": "/db",
79-
"query_url": "/queries/",
80-
"fortune_url": "/fortunes",
81-
"port": 8080,
82-
"approach": "Realistic",
83-
"classification": "Fullstack",
84-
"database": "Postgres",
85-
"framework": "ASP.NET Core [MVC]",
86-
"language": "C#",
87-
"orm": "Full",
88-
"platform": ".NET",
89-
"flavor": "CoreCLR",
90-
"webserver": "Kestrel",
91-
"os": "Linux",
92-
"database_os": "Linux",
93-
"display_name": "ASP.NET Core [MVC]",
94-
"notes": "",
95-
"versus": "aspnetcore"
96-
},
97-
"mysql": {
98-
"db_url": "/db",
99-
"query_url": "/queries/",
100-
"fortune_url": "/fortunes",
101-
"update_url": "/updates/",
102-
"cached_query_url": "/cached-worlds/",
103-
"port": 8080,
104-
"approach": "Realistic",
105-
"classification": "Platform",
106-
"database": "MySQL",
107-
"framework": "ASP.NET Core [Platform]",
108-
"language": "C#",
109-
"orm": "Raw",
110-
"platform": ".NET",
111-
"flavor": "CoreCLR",
112-
"webserver": "Kestrel",
113-
"os": "Linux",
114-
"database_os": "Linux",
115-
"display_name": "ASP.NET Core [Platform, MySQL]",
116-
"notes": "",
117-
"versus": "aspnetcore"
11823
}
11924
}
12025
]
Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
{
2+
"framework": "aspnetcore",
3+
"maintainers": ["DamianEdwards", "sebastienros"],
4+
"tests": [
5+
{
6+
"default": {
7+
"plaintext_url": "/plaintext",
8+
"json_url": "/json",
9+
"db_url": "/db",
10+
"query_url": "/queries/",
11+
"fortune_url": "/fortunes",
12+
"update_url": "/updates/",
13+
"cached_query_url": "/cached-worlds/",
14+
"port": 8080,
15+
"approach": "Realistic",
16+
"classification": "Platform",
17+
"database": "Postgres",
18+
"framework": "ASP.NET Core [Platform]",
19+
"language": "C#",
20+
"orm": "Raw",
21+
"platform": ".NET",
22+
"flavor": "CoreCLR",
23+
"webserver": "Kestrel",
24+
"os": "Linux",
25+
"database_os": "Linux",
26+
"display_name": "ASP.NET Core [Platform]",
27+
"notes": ""
28+
},
29+
"aot": {
30+
"plaintext_url": "/plaintext",
31+
"json_url": "/json",
32+
"db_url": "/db",
33+
"query_url": "/queries/",
34+
"fortune_url": "/fortunes",
35+
"update_url": "/updates/",
36+
"cached_query_url": "/cached-worlds/",
37+
"port": 8080,
38+
"approach": "Realistic",
39+
"classification": "Platform",
40+
"database": "Postgres",
41+
"framework": "ASP.NET Core [Platform]",
42+
"language": "C#",
43+
"orm": "Raw",
44+
"platform": ".NET",
45+
"flavor": "NativeAOT",
46+
"webserver": "Kestrel",
47+
"os": "Linux",
48+
"database_os": "Linux",
49+
"display_name": "ASP.NET Core [Platform, AOT]",
50+
"notes": ""
51+
},
52+
"minimal": {
53+
"plaintext_url": "/plaintext",
54+
"json_url": "/json",
55+
"db_url": "/db",
56+
"query_url": "/queries/",
57+
"fortune_url": "/fortunes",
58+
"update_url": "/updates/",
59+
"port": 8080,
60+
"approach": "Realistic",
61+
"classification": "Micro",
62+
"database": "Postgres",
63+
"framework": "ASP.NET Core [Minimal APIs]",
64+
"language": "C#",
65+
"orm": "Micro",
66+
"platform": ".NET",
67+
"flavor": "CoreCLR",
68+
"webserver": "Kestrel",
69+
"os": "Linux",
70+
"database_os": "Linux",
71+
"display_name": "ASP.NET Core [Minimal APIs]",
72+
"notes": "",
73+
"versus": "aspnetcore"
74+
},
75+
"mvc": {
76+
"plaintext_url": "/plaintext",
77+
"json_url": "/json",
78+
"db_url": "/db",
79+
"query_url": "/queries/",
80+
"fortune_url": "/fortunes",
81+
"port": 8080,
82+
"approach": "Realistic",
83+
"classification": "Fullstack",
84+
"database": "Postgres",
85+
"framework": "ASP.NET Core [MVC]",
86+
"language": "C#",
87+
"orm": "Full",
88+
"platform": ".NET",
89+
"flavor": "CoreCLR",
90+
"webserver": "Kestrel",
91+
"os": "Linux",
92+
"database_os": "Linux",
93+
"display_name": "ASP.NET Core [MVC]",
94+
"notes": "",
95+
"versus": "aspnetcore"
96+
},
97+
"mysql": {
98+
"db_url": "/db",
99+
"query_url": "/queries/",
100+
"fortune_url": "/fortunes",
101+
"update_url": "/updates/",
102+
"cached_query_url": "/cached-worlds/",
103+
"port": 8080,
104+
"approach": "Realistic",
105+
"classification": "Platform",
106+
"database": "MySQL",
107+
"framework": "ASP.NET Core [Platform]",
108+
"language": "C#",
109+
"orm": "Raw",
110+
"platform": ".NET",
111+
"flavor": "CoreCLR",
112+
"webserver": "Kestrel",
113+
"os": "Linux",
114+
"database_os": "Linux",
115+
"display_name": "ASP.NET Core [Platform, MySQL]",
116+
"notes": "",
117+
"versus": "aspnetcore"
118+
}
119+
}
120+
]
121+
}

frameworks/CSharp/aspnetcore/src/Platform/Platform.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21-
<PackageReference Include="Npgsql" Version="8.0.3" />
21+
<PackageReference Include="Npgsql" Version="10.0.0" />
2222
<PackageReference Include="MySqlConnector" Version="2.5.0" />
2323
<PackageReference Include="Dapper" Version="2.1.66" />
2424
<PackageReference Include="RazorSlices" Version="0.9.5" />

0 commit comments

Comments
 (0)