spacewalkhq / raft-rs

An understandable, fast and scalable Raft Consensus implementation
MIT License
129 stars 21 forks source link

Support for sending customized format data #39

Open dierbei opened 1 month ago

dierbei commented 1 month ago

Currently, only u32 types are supported for sending data: https://github.com/spacewalkhq/raft-rs/blob/5853c9f2461fdde76ef002e2246f73a3c93a04d5/src/server.rs#L644-L651 The effect I'm hoping to achieve is to be able to send any type;

vaibhawvipul commented 1 month ago

great idea.