raft icon indicating copy to clipboard operation
raft copied to clipboard

:rowboat: Raft implementation in Go

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

In part 2, `AppendEntries` method, this if block ```golang if args.LeaderCommit > cm.commitIndex { cm.commitIndex = intMin(args.LeaderCommit, len(cm.log)-1) cm.dlog("... setting commitIndex=%d", cm.commitIndex) cm.newCommitReadyChan