Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 715 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 715 Bytes

Go Chord

This package provides a Golang implementation of the Chord protocol. Chord is used to organize nodes along a ring in a consistent way. It can be used to distribute work, build a key/value store, or serve as the underlying organization for a ring overlay topology.

The protocol is separated from the implementation of an underlying network transport or RPC mechanism. Instead Chord relies on a transport implementation.

Transport Interfaces

The master branch contains a uTP transport interface. A GRPC transport interface can be found in the grpc-transport branch.

Acknowledgements

The original chord implementation is based on Armon's code available here.