Skip to content

Instantly share code, notes, and snippets.

View JohnChain's full-sized avatar
🎯
Focusing

JohnChain JohnChain

🎯
Focusing
View GitHub Profile
@JohnChain
JohnChain / zookeeper集群搭建.md
Created February 4, 2020 02:19
zookeeper集群搭建

获取docker镜像

docker pull bitnami/zookeeper:latest

创建一个docker网络

docker network create app-tier --driver bridge

启动三个容器,构建zookeeper集群

@JohnChain
JohnChain / integration.proto
Last active January 2, 2016 14:29
综合的protobuf消息格式
message message_header_0x01
{
required int32 message_id = 1;
optional int32 session = 2;
}
message room {
required int32 room_id = 1;
}