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.
|
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>