From 7ed53fe1554245c1a62c2ab10403ab231738c646 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Thu, 5 Dec 2013 22:19:46 -0800 Subject: [PATCH] feat(README): add contact and resources section Add contact and resources section with links to raft-dev, Ben's slides and the raft consensus homepage --- README.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/README.md b/README.md index 34a598e9f0..5486cc5695 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,20 @@ These projects are built on go-raft: If you have a project that you're using go-raft in, please add it to this README so others can see implementation examples. +## Contact and Resources + +- [raft-dev][raft-dev] is a mailing list for discussion about best practices + and implementation of Raft. Not goraft specific but helpful if you have + questions. +- [Slides from Ben's talk][bens-talk] which includes easy to understand + diagrams of leader election and replication +- The [Raft Consensus homepage][raft-home] has links to additional raft + implementations, slides to talks on Raft and general information + +[raft-home]: http://raftconsensus.github.io/ +[raft-dev]: https://groups.google.com/forum/#!forum/raft-dev +[bens-talk]: https://speakerdeck.com/benbjohnson/raft-the-understandable-distributed-consensus-protocol + ## The Raft Protocol This section provides a summary of the Raft protocol from a high level.