Bohdan Lisnenko

Results 9 comments of Bohdan Lisnenko

btw, I was able to hang my machine by setting to high value of count arg of rust client. It ate all 16 GB of RAM.

> Also... I thought channels have Mutices below Indeed, there must be some kind of locking. I was wondering how true Go approach will affect the performance. And it is...

I did it. Now there are two server packages and Dockerfiles. My tests shown that channel version is slightly slower. Also tried to disable GC (`GOGC=off` env) - no impact.

I thought what if mutex isn't bottleneck but http stack is. So I made separate commit with server.go on [fasthttp](https://github.com/valyala/fasthttp) stack with queue on mutex. And it spreads wider.

omg, fasthttp version is almost as fast as rust

Year of September was not specified 🤷‍♂️

Looks like it joins multiple `set-cookie` with comma https://github.com/dart-lang/http/blob/master/lib/src/io_client.dart#L43 At least for server side http client.

Docker version 19.03.1 Having trouble with leaked sockets to `/var/run/docker.sock`. Looks like issue due to `ContainerExecAttach`. I tried to use single docker client instead of creating it each time. It...