raft4s icon indicating copy to clipboard operation
raft4s copied to clipboard

Raft algorithm implementation in Scala

Results 1 raft4s issues
Sort by recently updated
recently updated
newest added

Hi! I'm not very familiar with Scala and I find these lines weird in `FollowerNode.scala`: ```scala if (msg.term < currentTerm) { (this, (VoteResponse(node, msg.term, false))) } else if (votedFor.isEmpty ||...