Skip to content

Commit fb3e557

Browse files
authored
akazawayun.pro updates version. (#10327)
* add new test : CSharp/akazawayun.pro * modify config and code * add content-type * update url * update package version * add 3 new tests: db、queries、updates 1. add 3 new tests: db、queries、updates; 2. split code to multi files; * - * use generated sql instead const string. * update version * fix bug of db query * set port to 8080 * 升级 akazawayun.pro 框架版本到 14 * i forget to update the port change... * test self whether work fine.. * update nuget version * why pr failed... * 不小心多提交了别人的框架...改回 * akazawayun fix bug * remove db test there is some error in mysql * confirmed there is bug in mysql.data 9.5.0 还是用8080端口吧- -b, 都用8080, 改其他的对比测时不方便 * downgrade mysql.data back to 9.4.0 * fix bug of akazawayun.pro * update version of akazawayun.pro * update version * add platform test * update nupkg version * update version * update version. * fix debug * update version. * update version.
1 parent d690f9e commit fb3e557

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

frameworks/CSharp/akazawayun.pro/src/AkazawaYun.Benchmark.Platform/AkazawaYun.Benchmark.Platform.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
</PropertyGroup>
1616

1717
<ItemGroup>
18-
<PackageReference Include="AkazawaYun.PRO" Version="1.14.25.1027-p" />
18+
<PackageReference Include="AkazawaYun.PRO" Version="1.14.25.1024-p" />
1919
</ItemGroup>
2020

2121
</Project>

frameworks/CSharp/akazawayun.pro/src/AkazawaYun.Benchmark.Platform/MyBenchmarkReceptor.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace AkazawaYun.Benchmark.Platform;
44

5-
class MyBenchmarkReceptor : akzWebReceptorBenchmark
5+
class MyBenchmarkReceptor : akaWebReceptorBenchmark
66
{
77
readonly JsonModel JsonModel;
88

@@ -23,7 +23,7 @@ public override ValueTask SendPlaintext(IHttpContext http)
2323
public override async ValueTask SendJson(IHttpContext http)
2424
{
2525
await http.Slient.Send(DataJson_OnlyHeader);
26-
akzJson.Text2Json(JsonModel, out ReadOnlyMemory<byte> json);
26+
akaJson.Text2Json(JsonModel, out ReadOnlyMemory<byte> json);
2727
await http.Slient.Send(json);
2828
}
2929
public override ValueTask SendDb(IHttpContext http)

frameworks/CSharp/akazawayun.pro/src/AkazawaYun.Benchmark.Platform/Program.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ namespace AkazawaYun.Benchmark.Platform;
44

55
class Program
66
{
7-
static readonly akzWebBuilder builder;
7+
static readonly akaWebBuilder builder;
88

99
static Program()
1010
{
11-
akzLog.War("AkazawaYun.PRO 平台压力测试特供版 ver2025.11.3, 只支持 /plaintext 和 /json");
12-
akzJson.Config(AotJsonContext.Default);
13-
builder = akzWebBuilder.Shared.Build(new MyBenchmarkReceptor());
11+
akaLog.War("AkazawaYun.PRO 平台压力测试特供版 ver2025.11.3, 只支持 /plaintext 和 /json");
12+
akaJson.Config(AotJsonContext.Default);
13+
builder = akaWebBuilder.Shared.Build(new MyBenchmarkReceptor());
1414
}
1515
static async Task Main()
1616
{

0 commit comments

Comments
 (0)