golang 服务热重启
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
会PS的小码农 4519b7ee56 测试通过,并写了中文自述文件 3 years ago
client 测试通过,并写了中文自述文件 3 years ago
logger 测试通过,并写了中文自述文件 3 years ago
server 测试通过,并写了中文自述文件 3 years ago
.gitignore 测试通过,并写了中文自述文件 3 years ago
LICENSE 测试通过,并写了中文自述文件 3 years ago
README.cn.md 测试通过,并写了中文自述文件 3 years ago
README.en.md 测试通过,并写了中文自述文件 3 years ago
go.mod 测试通过,并写了中文自述文件 3 years ago
ping.go 测试通过,并写了中文自述文件 3 years ago

README.en.md

Server graceful restart with Go

Install and run the server

$ go get github.com/Scalingo/go-graceful-restart-example
$ go-graceful-restart-example
2014/12/14 20:26:42 [Server - 4301] Listen on [::]:12345
[...]

Connect with the client

$ cd $GOPATH/src/github.com/Scalingo/go-graceful-restart-example/client
$ go run pong.go

Graceful restart

# The server pid is included in its log, in the example: 4301

$ kill -HUP <server pid>

Stop with timeout

Let 10 seconds for the current requests to finish.

$ kill -TERM <server pid>

Gist of output

https://gist.github.com/Soulou/7ca6a2d4f475f8e2345e