https://nikodoko.com/posts/goimports_explained/ Go users out there are probably familiar with gofmt and it’s brother goimports (which actually uses gofmt under the hood). These are two little CLI tools (written in Go, of course), that have become core parts of many developers’ Go workflow.
https://notes.eatonphil.com/database-basics.html https://notes.eatonphil.com/database-basics-expressions-and-where.html
提到爬虫,总会联想到Python。似乎Python是爬虫的唯一选择。爬虫只是完成一个访问页面然后收集数据的任务,用任何语言来写都能实现。相比较Python快速实现但是庞大的体型,Golang来写爬虫似乎是更好的又一选择。 https://github.com/zhshch2002/goribot https://imagician.net/archives/92/ HTTP请求 Golang语言的HTTP请求库不需要使用第三方的库,标准库就内置了足够好的支持:
1 背景 线上有一个高并发的 HTTP Go 服务部署在 A 区域,能够正常提供服务。我们有天将 B 区域的流量也准备切到这个服务的时候,发生了一个很诡异的事情。从 A 区域来的流量全部 200,但是从 B 区域来的流量全部都 502、504。