摘要: Go gin 基础 package main import ( "fmt" "github.com/gin-gonic/gin" "html/template" "net/http" ) type UserInfo struct { Username string `form:"username"` 阅读全文
posted @ 2021-06-02 19:13 橘丶阳菜 阅读(491) 评论(0) 推荐(0) 编辑
摘要: GoGC机制 垃圾回收(Garbage Collection,简称GC)是编程语言中提供的自动的内存管理机制,自动释放不需要的对象,让出存储器资源,无需程序员手动执行。 Golang中的垃圾回收主要应用三色标记法,GC过程和其他用户goroutine可并发运行,但需要一定时间的STW(stop th 阅读全文
posted @ 2021-06-02 19:03 橘丶阳菜 阅读(984) 评论(0) 推荐(0) 编辑