Crates.io | poldercast |
lib.rs | poldercast |
version | 1.2.1 |
source | src |
created_at | 2019-02-20 04:54:12.472842 |
updated_at | 2022-01-27 11:01:01.389048 |
description | Peer to Peer topology management |
homepage | https://github.com/primetype/poldercast#README.md |
repository | https://github.com/primetype/poldercast |
max_upload_size | |
id | 115900 |
size | 65,710 |
This crate implements the Poldercast's Peer to Peer (P2P) topology construction. The idea is to allow the node to participate actively into building the decentralized topology of the p2p network.
This is done through gossiping. This is the process of sharing with others topology information: who is on the network, how to reach them and what are they interested about.
In the poldercast paper there are 3 different modules implementing 3 different strategies to select nodes to gossip to and to select the gossiping data:
Cyclon
: this module is responsible to add a bit of randomness in the gossiping
strategy. It also prevent nodes to be left behind, favouring contacting Nodes
we have the least used;Vicinity
: this module helps with building an interest-induced links between the
nodes of the topology. Making sure that nodes that have common interests are often
in touch.Rings
: this module create an oriented list of nodes. It is an arbitrary way to
link the nodes in the network. For each topics, the node will select a set of close
nodes (see documentation in the implementation for more details about this).This crate is a concrete implementation of the Poldercast paper:
Now this crate allows room for different kind of management of the modules. It is possible to add the Poldercast default modules (the default). It is possible to setup a custom topology strategy utilizing part or all of the poldercast's modules or with new custom modules.
This project is licensed under either of the following licenses:
Please choose the licence you want to use.