Y
HN Search
Hacker News Search
new
|
comments
|
top
|
jobs
ldemailly
searching Neon…
1.
▲
2.
▲
3.
▲
4.
▲
5.
▲
6.
▲
13 ms
·
1.
▲
by
ldemailly
1y ago
Then what would you do? serial port? ssh? what is your terminal connected to if you don’t have an OS?
2.
▲
by
ldemailly
1y ago
It doesn’t (look like a go layout) and that’s a good thing because pkg/ src/ etc aren’t good go directories.
3.
▲
Simplify Go Dockerfiles: Tiny, Efficient, Secure
(laurentsv.com)
5 points
by
ldemailly
2y ago
|
0 comments
4.
▲
by
ldemailly
9y ago
MQ shines in async calls/event delivery. gRPC / http2 / websockets / thrift is better for synchronous calls ?
5.
▲
by
ldemailly
11y ago
My understanding iz ZMQ is a messaging/rpc mechanism while WDT is aimed at large data transfers (though it also works well with lots of small data as it's streaming) Also I don't know that ZMQ uses multiple streams ?
6.
▲
by
ldemailly
11y ago
bittorrent is optimized for sending to many and across peers. for fastest data transfer the time it takes to read the data is the bottleneck once the network is optimized, so hashing before sending would be more costly (for a 1:1 copy) we a
7.
▲
by
ldemailly
11y ago
Facebook internally use SDN which hashes source host/port destination host/port to pick paths. By using multiple connections on independent ports we do get multiple path utilized and can thus get better reliability and throughput
8.
▲
by
ldemailly
11y ago
http://udt.sourceforge.net/ is a solution using UDP but we decided that TCP with multiple flow was a better tradeoff for us (not to reinvent most of the window, congestion control, etc... of TCP)