Live data from Hacker News

Ask HN: Struggling to Understand DHTs – Any Good Resources?

news.ycombinator.com

1–10 of 22 posts

Re: Ask HN: Struggling to Understand DHTs – Any Good Resources?

#4
Read the research paper about the Chord algorithm: https://pdos.csail.mit.edu/papers/chord:sigcomm01/chord_sigc..., then implement the algorithm on your own (paper contains pseudo code).

Or start here, generally read high level details about the algorithm: https://en.wikipedia.org/wiki/Chord_(peer-to-peer).

Re: Ask HN: Struggling to Understand DHTs – Any Good Resources?

#5

Read the research paper about the Chord algorithm: https://pdos.csail.mit.edu/papers/chord:sigcomm01/chord_sigc... , then implement the algorithm on your own (paper contains pseudo code). Or start here, generally read high level details about the algorithm: https://en.wikipedia.org/wiki/Chord_(peer-to-peer) .

I second this advice. Chord is a very good place to start

Re: Ask HN: Struggling to Understand DHTs – Any Good Resources?

#7

[flagged]

This is getting downvoted but I would also recommend it. It's much faster than reading papers and, unless you are doing cutting edge research, LLMs will be able to accurately explain everything you need to know for common algorithms like this.

Re: Ask HN: Struggling to Understand DHTs – Any Good Resources?

#9

[flagged]

This is getting downvoted but I would also recommend it. It's much faster than reading papers and, unless you are doing cutting edge research, LLMs will be able to accurately explain everything you need to know for common algorithms like this.

It's getting downvoted because it's the equivalent of saying "google it".

Re: Ask HN: Struggling to Understand DHTs – Any Good Resources?

#10
The most widely used DHT is Kademlia from Petar Maymounkov and David Mazières. It is used in Ethereum, IPFS, I2P, Gnutella DHT, and many other applications.

https://en.wikipedia.org/wiki/Kademlia

https://pdos.csail.mit.edu/~petar/papers/maymounkov-kademlia...

https://web.archive.org/web/20120128120732/http://www.cs.ric...

Post reply on HN