Viewing profile — bwross
bwross
HN member- Joined
- Tue, Jan 20, 2015, 10:15 PM UTC
- HN karma
- 19
- Public activity
- 10 items
- HN profile
- View on Hacker News ↗
About bwross
Recent public activity
-
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.
-
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.
-
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 …
-
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.
-
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…
-
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…
-
comment
Comment #9007004
Just don't try to do TCP over tapes on a station wagon.
-
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…
- comment
- story