raft: fix bullet point indentation in README

release-3.3
Alex Robinson 2017-09-18 16:07:51 -04:00
parent 3cad5e4da1
commit b9c4f5b22a
1 changed files with 5 additions and 5 deletions

View File

@ -25,12 +25,12 @@ This raft implementation is a full feature implementation of Raft protocol. Feat
- Membership changes - Membership changes
- Leadership transfer extension - Leadership transfer extension
- Efficient linearizable read-only queries served by both the leader and followers - Efficient linearizable read-only queries served by both the leader and followers
- leader checks with quorum and bypasses Raft log before processing read-only queries - leader checks with quorum and bypasses Raft log before processing read-only queries
- followers asks leader to get a safe read index before processing read-only queries - followers asks leader to get a safe read index before processing read-only queries
- More efficient lease-based linearizable read-only queries served by both the leader and followers - More efficient lease-based linearizable read-only queries served by both the leader and followers
- leader bypasses Raft log and processing read-only queries locally - leader bypasses Raft log and processing read-only queries locally
- followers asks leader to get a safe read index before processing read-only queries - followers asks leader to get a safe read index before processing read-only queries
- this approach relies on the clock of the all the machines in raft group - this approach relies on the clock of the all the machines in raft group
This raft implementation also includes a few optional enhancements: This raft implementation also includes a few optional enhancements: