Go语言中文网 为您找到相关结果 636

Unit Test In Go With Docker

本篇文章主要讲解如何在 Docker 中进行 Go 单元测试,依赖 Docker 和 Go Modules。 为什么是 Docker 在 Docker 之前我们往往需要在 Jenkins 服务器上配置不同的 Go 版本以及针对每个项目配置 GOPATH,项目之间的隔离性差,经常出现基础库版本冲突的问题。 有了 Docker,我们可以在不同容器中运行单元测试,该测试不局限不同项目,甚至可以是同一项目不同分支。 所以在测试隔离性和项目测试并发度上都有很大提升,而且测试结束后,环境清理也简单许多。 为什么是 Go Modules Go Modules 作为官方默认的包管理工具,基本解决了 Go 长期存在的包管理问题,它为我们的项目管理带来很多好处: 自动解析和添加依赖 签名验证 依赖缓存 支持相对...阅读全文

博文 2019-09-23 12:33:26 xjtuhit

golang常用代码片段--定制化http-client组件

封装标准库的http工具 import ( "crypto/tls" "errors" "github.com/gin-gonic/gin" "io/ioutil" "net/http" "strconv" "strings" "time" ) var httpClient = &http.Client{ Timeout: 3 * time.Second, // 返回301、302重定向时,不会自动发起重定向访问 CheckRedirect: func(req *http.Request, via []*http.Request) error { return http.ErrUseLastResponse }, Transport: &http.Transport{ TLSClientCo...阅读全文

博文 2019-11-25 00:02:38

Within the handler of a typical web application, is it advisable to execute multiple long-running functions (e.g: database queries) in separate goroutines? And if so, is syncGroup the only way to wait for all those goroutines to finish their jobs?

<p>My gut says &#34;yes&#34;, but having taken a look at several web application examples and boilerplates, the approach they take tends to be in the form of this (I&#39;m using a Gin handler here as an example, and imaginary User and Billing &#34;repository&#34; structs that fetch data from either a database or an externa...阅读全文

App Framework

<p>A few years ago I made Operation Go (<a href="http://gocode.io" rel="nofollow">http://gocode.io</a>) for fun at GopherGala. Since then, I unfortunately haven&#39;t built or launched anything in Go, but I have several ideas that target different markets but follow a highly similar backend pattern.</p> ...阅读全文

资源 2017-02-25 16:00:13 xuanbao

[系列] - go-gin-api 路由中间件 - Jaeger 链路追踪(六)

概述 首先同步下项目概况: 上篇文章分享了,路由中间件 - Jaeger 链路追踪(理论篇),这篇文章咱们接着分享:路由中间件 - Jaeger 链路追踪(实战篇)。 这篇文章,确实让大家久等了,主要是里面有一些技术点都是刚刚研究的,没有存货。 先看下咱们要实现的东西: API 调用了 5 个服务,其中 4 个 gRPC 服务,1 个 HTTP 服务,服务与服务之间又相互调用: Speak 服务,又调用了 Listen 服务 和 Sing 服务。 Read 服务,又调用了 Listen 服务 和 Sing 服务。 Write 服务,又调用了 Listen 服务 和 Sing 服务。 咱们要实现的就是查看 API 调用的链路。 关于一些理论的东西,大家可以去看看上篇文章或查阅一些资料,这篇文章...阅读全文

博文 2019-09-28 22:04:28 訢亮

Go Modules 详解

文链接:Go Modules 详解 Go 1.11 和 Go 1.12 包含了初步的 Go Modules 支持,且计划在 2019 年 8 月发布的 Go 1.13 会在所有开发过程中默认使用 Go Modules。 Go Modules 是为了提升使用其他开发者代码,即添加依赖项(模块、包)时的体验,也是为了让代码的正确性、安全性得到保障。并且 Go Modules 可以使用 GOPROXY 环境变量来解决中国大陆无法使用 go get 的问题。 所以学习跟 Go Modules 有关的知识是很有必要的。 模式 Go Modules 在 Go 1.11 及 Go 1.12 中有三个模式,根据环境变量 GO111MODULE 定义: 默认模式(未设置该环境变量或 GO111MODULE=a...阅读全文

Gin框架系列02:路由与参数

回顾 上一节我们用Gin框架快速搭建了一个GET请求的接口,今天来学习路由和参数的获取。 请求动词 熟悉RESTful的同学应该知道,RESTful是网络应用程序的一种设计风格和开发方式,每一个URI代表一种资源,客户端通过POST、DELETE、PUT、GET四种请求方式来对资源做增删改查的操作。 同样的,Gin框架给我们提供的除这4种动词外,还有PATCH、OPTION、HEAD等,详细内容可以查看rentergroup.go文件的IRoutes接口。 type IRoutes interface { Use(...HandlerFunc) IRoutes Handle(string, string, ...HandlerFunc) IRoutes Any(string, ...Hand...阅读全文

博文 2020-04-08 16:35:24 平也

Which external packages would you like to become part of the standard library?

<p>Which external packages you believe are so well-written, clean, battle-tested or otherwise awesome enough that you would like them to become part of the standard library in the future?</p> <hr/>**评论:**<br/><br/>dchapes: <pre><p>The Go authors are doing the reverse, keeping new stuff out of the standard l...阅读全文

Gin框架系列01:极速上手

Gin是什么? Gin是Go语言编写的web框架,具备中间件、崩溃处理、JSON验证、内置渲染等多种功能。 准备工作 本系列演示所有代码都在Github中,感兴趣的同学可以自行查阅,欢迎大家一起完善。 https://github.com/pingyeaa/golang-examples/tree/master/gin 没有安装配置Go语言环境的同学请先自行安装,这里不再赘述。首先,我们来创建工作目录gin。 mkdir gin && cd gin 然后用go mod命令初始化项目,go mod是Go语言的包管理工具,官方推荐使用,有了它就不再受GOPATH的限制,可以在任何目录初始化项目。 go mod init gin 接下来安装gin库。 go get -u github.com/gi...阅读全文

博文 2020-04-06 18:32:40 平也

golang post模拟客户端多文件上传以及处理

为了模拟客户端和服务器端,我这儿开了两个进程,进程A(监听地址:http://192.168.50.250:8080 路由/objects)进程B(监听地址:http://192.168.50.250:8081 路由:/objetcs)方法都是post。进程A是监听客户上传的文件,然后模拟http clien上传给进程B。在B中将文件存储或者将内容打印。 进程A post /ojects: func PostFile(c *gin.Context){ var b bytes.Buffer w := multipart.NewWriter(&b) c.Request.ParseMultipartForm(100000) multiPartform ,_:= c.MultipartForm() ...阅读全文

博文 2019-08-15 18:57:23 我的饭卡呢

0杂项

go mod initgo mod tidy 包依赖关系go mod download 源码下载gin中文快速入门https://gin-gonic.com/zh-cn/docs/quickstart/Jsoniter Jsoniter 的 Golang 版本可以比标准库(encoding/json)快 6 倍之多。之前在Gin中已经说到, Gin比Martini的效率高好多耶, 究其原因是因为使用了httprouter这个路由框架, httprouter的git地址是: httprouter源码. 今天稍微看了下httprouter的 实现原理, 其实就是使用了一个radix tree(前缀树)来管理请求的URL, 下面具体看看httprouter原理.https://www.cnblog...阅读全文

博文 2020-05-31 22:32:53 范佳伟_f5b7