2
使用gin框架。有沒有辦法在golang/gin中關閉客戶端請求?
有沒有辦法通知客戶端關閉請求連接,然後服務器處理程序可以做任何後臺作業,而不讓客戶端等待連接?
func Test(c *gin.Context) {
c.String(200, "ok")
// close client request, then do some jobs, for example sync data with remote server.
//
}