这里记录每周值得分享的 Go 语言相关内容,周日发布。本周刊开源(GitHub:polaris1119/golangweekly[1]),欢迎投稿,推荐或自荐文章/软件/资源等,请提交 issue[2] 。
鉴于一些人可能没法坚持把英文文章看完,因此,周刊中会尽可能推荐优质的中文文章。优秀的英文文章,我们的 GCTT 组织会进行翻译。
由于微信公众号不支持外链,文中大量链接可通过文末「阅读原文」查看。
题图:goplay
刊首语
以下代码输出什么?
package main
import "fmt"
func main() {
fmt.Println(1 % 2.0)
fmt.Println(int(1) % 2.0)
}
资讯
1、Go1.18 应该快发布了[3]
待解决的问题不多了。
2、httpx 1.2 发布[4]
一个快速且多功能的 HTTP 工具包,它旨在通过增加线程来保持结果的可靠性。
文章
1、字节跳动 Go RPC 框架 Kitex 性能优化实践[5]
Kitex 是节跳动框架组研发的下一代高性能、强可扩展性的 Go RPC 框架。
熟悉 Golang 的朋友对于 json 和 struct 之间的转换一定不陌生。
在任何语言的并发编程场景中,都有 race 问题,现代语言为了解决 race 问题有两种思路,一种是像 rust 那样的通过所有权+Sync/Send 限制用户尽量无法写出带 race 的代码;一种是像 Go 这样,通过 race detector 在测试期间检查数据竞争问题。
文件处理是一个常见的问题,同时 Go 又提供了非常多的文件读取方法,容易让人患选择困难症。
有常识的人都知道,在除法运算中不能除以零,而我们在实际的应用中面对大量的上下文,很有可能因为考虑不周就出现除以零的情况。
本文介绍在 golang 中如何通过依赖注入(Dependency Inject,简称 DI)管理全局服务。
开源项目
1、display[6]
支持不同显示器的图形库。
2、amqp091-go[7]
RabbitMQ 的 Go 客户端。
3、dynamo[8]
DynamoDB 的 Go 客户端。
4、gocql[9]
Cassandra 的 Go 客户端。
5、Oso[10]
一个包含 batteries 的框架,用于在你的应用程序中建立授权。
资源&&工具
1、termsvg[11]
将 asciinema 文件转为 svg。
2、tygo[12]
从 Go 源码生成 Typescript 类型。
3、dasel[13]
从命令行查询和更新数据结构,支持 JSON, TOML, YAML, XML 和 CSV 等格式。
4、fakegen[14]
生成 M 列的随机 schema,以填充 N 行数据。
5、subfinder[15]
一个子域发现工具,可以为网站发现有效的子域名。
6、syft[16]
从容器镜像和文件系统生成软件物料清单(SBOM)的工具和库。
7、opensca[17]
Go 实现的开源软件构成分析工具。
订阅
这个周刊每周日发布,同步更新在Go 语言中文网[18]和微信公众号[19]。
微信搜索"Go 语言中文网"或者扫描二维码,即可订阅。
参考资料
polaris1119/golangweekly: https://github.com/polaris1119/golangweekly
[2]提交 issue: https://github.com/polaris1119/golangweekly/issues
[3]Go1.18 应该快发布了: https://github.com/golang/go/issues?q=is%3Aopen+is%3Aissue+label%3Arelease-blocker+milestone%3AGo1.18
[4]httpx 1.2 发布: https://github.com/projectdiscovery/httpx
[5]字节跳动 Go RPC 框架 Kitex 性能优化实践: https://studygolang.com/articles/35530
[6]display: https://github.com/embeddedgo/display
[7]amqp091-go: https://github.com/rabbitmq/amqp091-go
[8]dynamo: https://github.com/guregu/dynamo
[9]gocql: https://github.com/gocql/gocql
[10]Oso: https://github.com/osohq/oso
[11]termsvg: https://github.com/mrmarble/termsvg
[12]tygo: https://github.com/gzuidhof/tygo
[13]dasel: https://github.com/TomWright/dasel
[14]fakegen: https://github.com/multiprocessio/fakegen
[15]subfinder: https://github.com/projectdiscovery/subfinder
[16]syft: https://github.com/anchore/syft/
[17]opensca: https://github.com/XmirrorSecurity/OpenSCA-cli
[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
文章评论