ginフレームワークの使用。
リクエスト接続を閉じるようにクライアントに通知する方法はありますか?サーバーハンドラーは、クライアントに接続を待機させずにバックグラウンドジョブを実行できますか?
func Test(c *gin.Context) {
c.String(200, "ok")
// close client request, then do some jobs, for example sync data with remote server.
//
}