eBay / NuRaft

C++ implementation of Raft core logic as a replication library
Apache License 2.0
1.01k stars 240 forks source link

Implement stream mode in peer and raft server(a proposal) #529

Closed ZZhongge closed 2 months ago

ZZhongge commented 2 months ago
  1. it is a proposal for stream mode. I keep the make_busy and set_free for append-log requests
  2. most of changes in peer is used in raft server. so I merge the change of peer and raft server to see if it is a proper way to implement stream mode.
  3. I will split it into 2 PR and add tests separately once this proposal is accepted.