Describe the bug
The current unstable version cannot run redisraft, but it successfully ran after I switched to redis 7.2.5.
To reproduce
use the current unstable version run redisraft
Expected behavior
run
Additional information
Any additional information that is relevant to the problem.
Comment From: sundb
@marsevilspirit can you elaborate on the issue?
Comment From: marsevilspirit
The following comes from the redisraft readme, the current unstable version will report an error.
To build:
git clone https://github.com/RedisLabs/redisraft.git
cd redisraft
mkdir build && cd build
cmake ..
make
redisraft.so will be created under the project directory.
Creating a RedisRaft Cluster RedisRaft requires Redis build from the 'unstable' branch. Build Redis first:
git clone https://github.com/redis/redis
cd redis
make
make install
To create a three-node cluster, start the first node:
redis-server \
--port 5001 --dbfilename raft1.rdb \
--loadmodule <path-to>/redisraft.so \
--raft.log-filename raftlog1.db \
--raft.addr localhost:5001
Comment From: sundb
@marsevilspirit thanks, i can reproduce it in my local.