Thanks to visit codestin.com
Credit goes to github.com

Skip to content

MatthewAlanLeBrun/graft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Graft

Graft offers an Elixir implementation of the raft consensus algorithm, allowing the creation of a distributed cluster of servers, where each server manages a replicated state machine. The Graft.Machine behaviour allows users to define their own replicated state machines, that may handle user defined client requests.

In this project's documentation you will find terminology that has been defined in the raft paper. The docs do not go into specifics of the raft algorithm, so if you wish to learn more about how raft achieves consensus, the official raft webpage is a great place to start.

Installation

To install the package, add it to your dependency list in mix.exs.

def deps do
    [{:graft, "~> 0.1.1"}]
end

If you are new to Elixir/mix, check out the official Elixir webpage for instructions on how to install Elixir. It is also a great place to start for newcomers to the language. You may also want to check out the Introduction to mix and dependencies guides for more information on how importing external projects works in Elixir.

Documentation

Find the full documentation as well as examples here.

About

Raft implementation in Elixir

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published