Skip to content
This repository has been archived by the owner on Feb 27, 2024. It is now read-only.

distributed hash table

Henk van Cann edited this page Aug 15, 2022 · 1 revision

Definition

It is a distributed system that provides a lookup service similar to a hash table: key-value pairs are stored in a DHT, and any participating node can efficiently retrieve the value associated with a given key. The main advantage of a DHT is that nodes can be added or removed with minimum work around re-distributing keys. Keys are unique identifiers which map to particular values, which in turn can be anything from addresses, to documents, to arbitrary data.
(Source: Wikipedia)

Clone this wiki locally