Viewing profile — kt315_
kt315_
HN member- Joined
- Sun, Feb 03, 2019, 7:58 PM UTC
- HN karma
- 11
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About kt315_
No profile information was provided.
Recent public activity
-
comment
Comment #21998398
While no 503s were observed in the test, there were timeouts. I updated the article with corresponding graph.
-
comment
Comment #21988199
None of the tested webservers were returning 503.
-
comment
Comment #21987255
Sleeping is done with setTimeout: https://gitlab.com/stressgrid/dummies/blob/b342b02407ce09cec... This isn't busy wait. Instead it yields for specified time period, much like netwo…
- story
-
comment
Comment #19320206
We are preparing new benchmark test for major platforms. Among other suggestions it will include memory consumption.
-
comment
Comment #19316460
Author here. We tried number of acceptors that was 4x and 16x number of cores without any difference.
-
comment
Comment #19250917
With Gun it is also possible to create a specialized process structure albeit with more heavyweight processes behind each connection. Mint provides lightweight (possibly more effic…
-
comment
Comment #19248463
I think Gun has very similar philosophy, e.g. it is connection oriented and does not impose pooling and such.
-
comment
Comment #19248368
What is the advantage over Gun? ( https://ninenines.eu/docs/en/gun/1.3/manual/ )
-
comment
Comment #19107224
One of the benchmark goals was to test "scheduling" efficiency of each runtime. In other words to show how well it scales given many-core instance, which often is more economical i…
-
comment
Comment #19100927
What would be the good Java web server to test?
-
comment
Comment #19100917
Good point, will add.
-
comment
Comment #19092314
Author here. Planning to run the same test using cluster module with one worker per CPU. What would be the most performant way to serve HTTP in Go?