server-starter

Go port of start_server utility (Server::Starter)

  • 所有者: lestrrat-go/server-starter
  • 平台:
  • 許可證: MIT License
  • 分類:
  • 主題:
  • 喜歡:
    0
      比較:

Github星跟蹤圖

server-starter

Go port of start_server utility (a.k.a. Server::Starter).

Build Status

GoDoc

DESCRIPTION

note: this description is almost entirely taken from the original Server::Starter module

The start_server utility is a superdaemon for hot-deploying server programs.

It is often a pain to write a server program that supports graceful restarts, with no resource leaks. Server::Starter solves the problem by splitting the task into two: start_server works as a superdaemon that binds to zero or more TCP ports or unix sockets, and repeatedly spawns the server program that actually handles the necessary tasks (for example, responding to incoming connections). The spawned server programs under start_server call accept(2) and handle the requests.

To gracefully restart the server program, send SIGHUP to the superdaemon. The superdaemon spawns a new server program, and if (and only if) it starts up successfully, sends SIGTERM to the old server program.

By using start_server it is much easier to write a hot-deployable server. Following are the only requirements a server program to be run under start_server should conform to:

  • receive file descriptors to listen to through an environment variable - perform a graceful shutdown when receiving SIGTERM

Many PSGI servers support this. If you want your Go program to support it, you can look under the listener directory for an implementation that also fills the net.Listener interface.

INSTALLATION

go get github.com/lestrrat-go/server-starter/cmd/start_server

主要指標

概覽
名稱與所有者lestrrat-go/server-starter
主編程語言Go
編程語言Go (語言數: 3)
平台
許可證MIT License
所有者活动
創建於2014-12-01 02:36:17
推送於2022-04-25 10:39:31
最后一次提交2021-01-02 08:09:21
發布數2
最新版本名稱0.0.2 (發布於 )
第一版名稱0.0.1 (發布於 )
用户参与
星數217
關注者數6
派生數21
提交數74
已啟用問題?
問題數8
打開的問題數4
拉請求數11
打開的拉請求數3
關閉的拉請求數3
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?