codecamp

Gin 在中间件中使用Goroutine

当在中间件或 handler 中启动新的 Goroutine 时,不能使用原始的上下文,必须使用只读副本。

package main

import (
	"github.com/gin-gonic/gin"
	"log"
	"time"
)

func main() {
	r := gin.Default()

	r.GET("/test1", func(c *gin.Context) {
		// 拷贝一份副本在Goroutine中使用
		tmp := c.Copy()
		go func() {
			time.Sleep(5 * time.Second)
			// 这里使用的是值拷贝的tmp
			log.Println("test1已完成,路径是:" + tmp.Request.URL.Path)
		}()
	})

	r.GET("/test2", func(c *gin.Context) {
		time.Sleep(5 * time.Second)
		// 因为没有使用 goroutine,不需要拷贝上下文
		log.Println("test2已完成,路径是:" + c.Request.URL.Path)
	})
	r.Run()
}

以上代码执行结果如下

动画


Gin 如何记录日志
Gin 绑定HTML复选框
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }