Go 与 NetCore (C#)性能测试对比
准备工作 Go(基于Gin)与 Net Core 准备一最简单的接口,为避免影响,不返回任何数据。 Go :test.go package test import ( github.com/gin-gonic/gin ) func Index(c *gin.Context) { c.Done() } Go:router.go func InitRouter() *gin.Engine { router := gin.New() router.GET(/favicon.ico, func(c *gin.Context) { }) testRouter := router.
用户评论