fallenwood
fallenwood
Thanks for answering. It should be 2) The 'Single connection mode'. I'll follow the section to see if I need to rewrite all the code. --- I took a quick...
same issue, on debian 10 buster amd64, hyper-v
> Does dotnet has native types like `Vec` or bytes? Maybe we should provide correct API instead `string` at dotnet side? With a workaround, the example test can be fixed...
> > But it works for ansi strings only, and for non-ansi (e.g. Simplified Chinese), the original version also fails with linux > > Oh, that's unexpected. Our public API...
With Marshal.StringToCoTaskMemUTF8 and Marshal.PtrToStringUTF8 it works on both windows and linux. but I am not sure with performance code ```csharp public class BlockingOperator { public IntPtr Op { get; }...
> > Okay, I understand: Even if it contains only ASCII characters, we still need to ensure that it's encoded in UTF-8. > > Yes, the encoding in windows world...
> FYI, AsyncMessagePump is available within the Shane32.AsyncResetEvents nuget package Thanks for the infos :) > @fallenwood Do you need more help here or we may close? I am not...
Hi @p3rsik, looks like there is no active updates in this repo since Oct 2021, I have created a [fork myself](https://github.com/fallenwood/syntax-highlighter "") and adds [contribute.md](https://github.com/fallenwood/syntax-highlighter/blob/master/CONTRIBUTE.md "") based on my understanding...
@Bilal2453, thanks for the info, I tested nodejs with http keep-alive disabled, but it looks still much better than luvit (7k vs 3k) ```javascript const http = require("http"); const server...
@Bilal2453 here is the result with `coro-http` with the your code, it's better than nodejs (10k vs 7k) ``` # coro-http → ./go-wrk -c 125 http://127.0.0.1:5003 Running 10s test @...