C++ Raft consensus replication library for distributed systems
C++ implementation of Raft core logic as a replication library
nuraft$ g++ -I$(brew --prefix nuraft)/include myapp.cpp -L$(brew --prefix nuraft)/lib -lnuraft -o myapp$ brew info nuraft && ls $(brew --prefix nuraft)/lib$ pkg-config --cflags --libs nuraft && g++ myapp.cpp $(pkg-config --cflags --libs nuraft) -o myapp