wang0618 / RaftChatRoom

采用Raft协议的分布式聊天室

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Raft Chat Room

一个基于Raft协议的分布式聊天室

Running

git clone https://github.com/wang0618/RaftChatRoom.git
cd RaftChatRoom
pip3 install -r requirements.txt

# 初始化两个节点的Raft集群 (集群至少含有两个节点才可以正常工作)
python3 app.py 127.0.0.1:8101 127.0.0.1:8100 &  
python3 app.py 127.0.0.1:8100 127.0.0.1:8101 &

# 新节点动态加入集群
python3 app.py

支持通过环境变量WEB_PORT设置聊天室界面的端口

About

采用Raft协议的分布式聊天室


Languages

Language:Python 100.0%