We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acbcd03 commit ad827bcCopy full SHA for ad827bc
frameworks/CSharp/wiredio/src/Platform/Platform.csproj
@@ -20,6 +20,6 @@
20
</ItemGroup>
21
22
<ItemGroup>
23
- <PackageReference Include="Unhinged" Version="9.0.0" />
+ <PackageReference Include="Unhinged" Version="9.0.1" />
24
25
</Project>
frameworks/CSharp/wiredio/src/Platform/Program.cs
@@ -47,8 +47,8 @@ public static void Main(string[] args)
47
// Max 512 epoll events per wake (quite overkill)
48
.SetMaxEventsPerWake(512)
49
50
- // Max 512 connection per thread
51
- .SetMaxNumberConnectionsPerWorker(512)
+ // Max 1024 connection per thread
+ .SetMaxNumberConnectionsPerWorker(1024)
52
53
// 32KB in and 16KB out slabs to handle 16 pipeline depth
54
.SetSlabSizes(32 * 1024, 16 * 1024)
0 commit comments