Live data from Hacker News

Viewing profile — kt315_

kt315_

HN member
Joined
Sun, Feb 03, 2019, 7:58 PM UTC
HN karma
11
Public activity
13 items

About kt315_

No profile information was provided.

Recent public activity

  1. comment
    Comment #21998398

    While no 503s were observed in the test, there were timeouts. I updated the article with corresponding graph.

  2. comment
    Comment #21988199

    None of the tested webservers were returning 503.

  3. 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…

  4. story
  5. comment
    Comment #19320206

    We are preparing new benchmark test for major platforms. Among other suggestions it will include memory consumption.

  6. comment
    Comment #19316460

    Author here. We tried number of acceptors that was 4x and 16x number of cores without any difference.

  7. 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…

  8. comment
    Comment #19248463

    I think Gun has very similar philosophy, e.g. it is connection oriented and does not impose pooling and such.

  9. comment
    Comment #19248368

    What is the advantage over Gun? ( https://ninenines.eu/docs/en/gun/1.3/manual/ )

  10. 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…

  11. comment
    Comment #19100927

    What would be the good Java web server to test?

  12. comment
    Comment #19100917

    Good point, will add.

  13. 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?