这里记录每周值得分享的 Go 语言相关内容,周日发布。本周刊开源(GitHub:polaris1119/golangweekly[1]),欢迎投稿,推荐或自荐文章/软件/资源等,请提交 issue[2] 。
鉴于一些人可能没法坚持把英文文章看完,因此,周刊中会尽可能推荐优质的中文文章。优秀的英文文章,我们的 GCTT 组织会进行翻译。
由于微信公众号不支持外链,文中大量链接可通过文末「阅读原文」查看。
题图:来自 golangweekly
刊首语
上期题目:以下代码输出什么?
package main
import "fmt"
func main() {
var a, b = 1.0, 2.0
fmt.Println(a | b)
}
A:3;B:+Inf;C:true;D:编译错误
正确答案:D,正确率 46%。float64 不支持 | 操作。
放假了,这次不出题目了!
资讯
1、Ffuf 1.4.0 发布[3]
用 Go 编写的快速 Web 模糊器,用于模糊测试。支持对 HTTP 头域,POST 数据和 URL 的不同部分进行模糊测试。介绍文章:https://hakin9.org/ffuf-a-fast-web-fuzzer-written-in-go/。
2、usql 0.10 发布[4]
数据库的通用 cli 工具,可以认为是数据库的瑞士军刀。
3、grpc 1.45.1 发布[5]
小版本更新。
文章
1、golang本地缓存(bigcache/freecache/fastcache等)选型对比及原理总结[6]
本篇文章我们就来简单聊聊在 golang 做业务开发的过程中,本地缓存的一些可选的开源方案,分析它们的特点,以及内部的实现原理。
该报告的主要目的是希望能为软件工程师及开发者们提供见解和资源,以帮助促进他们的职业发展,同时也为雇主带来一些提高招聘效率和维持人才的策略。
3、Facebook 开源 Go 实体框架 Ent 支持 TiDB
Facebook 开源的 Golang 实体框架 Ent 完成了对 TiDB 数据库的支持。
如何正确构建镜像。
Go 是一门注重工程的语言,本文分享 Go 工程化社区实践!
案例分享。
对于懒汉模式单例的实现,sync.Once 是更好的办法,简洁安全。
开源项目
1、tableflip[7]
Go 进程平滑重启库。
2、ykmangoath[8]
另一个 ykman Go lib。
3、GFuzz[9]
通过消息重排自动检测Go程序中的并发缺陷。网友 charlesxsh 推荐。
4、gotrace[10]
监控 runtime stack 的库。作者 ysmood 自荐。
5、gop[11]
一个用于打印复杂数据结构的库。作者 ysmood 自荐。
资源&&工具
1、thanos[12]
Ruby to Go Transpiler 原型。
2、postlite[13]
一个网络代理,允许通过 Postgres wire 协议访问远程 SQLite 数据库。
3、fortio[14]
负载测试工具。
4、WinslowSynth[15]
用 Go 制造有趣的声音。
5、instl[16]
GitHub 项目安装器,跨平台的。
6、termshark[17]
tshark 的终端 UI,受 Wireshark 启发。
订阅
这个周刊每周日发布,同步更新在Go语言中文网[18]和微信公众号[19]。
微信搜索"Go语言中文网"或者扫描二维码,即可订阅。
参考资料
polaris1119/golangweekly: https://github.com/polaris1119/golangweekly
[2]提交 issue: https://github.com/polaris1119/golangweekly/issues
[3]Ffuf 1.4.0 发布: https://github.com/ffuf/ffuf
[4]usql 0.10 发布: https://github.com/xo/usql
[5]grpc 1.45.1 发布: https://github.com/grpc/grpc/releases/tag/v1.45.1
[6]golang本地缓存(bigcache/freecache/fastcache等)选型对比及原理总结: https://zhuanlan.zhihu.com/p/487455942
[7]tableflip: https://github.com/cloudflare/tableflip
[8]ykmangoath: https://github.com/aripalo/ykmangoath
[9]GFuzz: https://github.com/system-pclub/GFuzz
[10]gotrace: https://github.com/ysmood/gotrace
[11]gop: https://github.com/ysmood/got/tree/master/lib/gop
[12]thanos: https://github.com/redneckbeard/thanos
[13]postlite: https://github.com/benbjohnson/postlite
[14]fortio: https://github.com/fortio/fortio
[15]WinslowSynth: https://github.com/rbren/WinslowSynth
[16]instl: https://github.com/installer/instl
[17]termshark: https://github.com/gcla/termshark
[18]Go语言中文网: https://studygolang.com/go/weekly
[19]微信公众号: https://weixin.sogou.com/weixin?query=Go%E8%AF%AD%E8%A8%80%E4%B8%AD%E6%96%87%E7%BD%91
文章评论