Live data from Hacker News

Viewing profile — bwross

bwross

HN member
Joined
Tue, Jan 20, 2015, 10:15 PM UTC
HN karma
19
Public activity
10 items

About bwross

https://github.com/bwross

Recent public activity

  1. comment
    Comment #9251465

    If you look really closely at the noisy images, you can see little blotches that vaguely resemble the things the computer recognized them as.

  2. comment
    Comment #9054744

    Show me your application and I'll tell you where it's either calling select() or is limiting connections to keep itself from locking up the OS.

  3. comment
    Comment #9054374

    So the basic take away seems to be: don't bother using async patterns for single, low latency connections to a server on your local network. For anything where you're dealing with …

  4. comment
    Comment #9054352

    Also analogous to cooperative multitasking as used in the modern era in high performance server applications. To great success, I might add.

  5. comment
    Comment #9041223

    Additionally, a TCP connection is essentially an operating system resource; you need to set aside a port and space for a send and receive buffer. It might seem fine for a client to…

  6. comment
    Comment #9027404

    Solutions that pull the TCP stack out of the kernel perform so much better because they're bypassing all the internal bureaucracy that the kernel otherwise performs to make it as e…

  7. comment
    Comment #9007004

    Just don't try to do TCP over tapes on a station wagon.

  8. comment
    Comment #9005305

    The primary advantage GridFTP has over simply using tar+netcat for performance is that GridFTP can multiplex transfers over multiple TCP connections. This is helpful as long as the…

  9. comment
  10. story