How Not to Implement a Dht
What is a DHT? A DHT is a type of database that scales to 10s of millions of nodes. In a DHT the users also contribute to the storage of the data.
DHT is an acronym for Distributed Hash Table.
Distributed refers to the fact that DHTs involve many independent nodes spread across a network.
A hash is the value returned by a hash function, which is any function that maps arbitrary data to a fixed length value.
read more