这里记录每周值得分享的 Go 语言相关内容,周日发布。本周刊开源(GitHub:polaris1119/golangweekly[1]),欢迎投稿,推荐或自荐文章/软件/资源等,请提交 issue[2] 。
鉴于一些人可能没法坚持把英文文章看完,因此,周刊中会尽可能推荐优质的中文文章。优秀的英文文章,我们的 GCTT 组织会进行翻译。
题图:来自 golangweekly
有一位网友后台留言,遇到了一个面试题,这里放出来看看大家知道答案吗?以下代码输出什么?
package mainimport "fmt"
type temp struct{}
func (t *temp) Add(elem int) *temp {
fmt.Println(elem)
return &temp{}
}
func main() {
tt := &temp{}
defer tt.Add(1).Add(2)
tt.Add(3)
}
上期的题目正确率比之前好,达到了 52%。一起看看。
以下代码输出什么?
package mainfunc main() {
m := make(map[int]int, 3)
x := len(m)
m[1] = m[1]
y := len(m)
println(x, y)
}
A:3 3;B:3 4;C:0 0;D:0 1
正确答案:D。这里关键是 m[1] = m[1],右边的 m[1] 返回 0(map 中不存在某个 key 时,返回零值),因此最后 map 中有一个元素:1->0。
不过,这道题竟然有 35% 的人选 A,完全不知道 make 对 map 而言,第二个参数意味着什么。
1、Go 向后兼容讨论[3]
rsc 发起的兼容性讨论。
2、CodePerfect[4]
Go 高性能 IDE,使用 C++编写。不收收费的。
3、chroma 2.3 发布[5]
纯 Go 实现的通用语法高亮库。
4、Liftbridge 1.9 发布[6]
通过为 NATS 消息传递系统实施持久的流增强,Liftbridge 提供了轻量级的,容错的消息流。
5、bud 0.2.5 发布[7]
一个全栈框架。
6、Buf 1.8 发布[8]
一种新的 Protobuf 处理库。
golang 的组件 net/url 实现了 URL 的解析处理和查询转义。
1、Go 每日一库之一个兼具单机和集群模式的轻量级限流器 throttled
今天给大家推荐的工具是一个轻量级的限流器,star:1.2k。该工具实现了对资源的访问速率限制,资源可以是特定的 URL、用户或者任何自定义的形式。比如针对HTTP API接口。
9 月 8 日,Go 语言社区发布 2022 年第二季度开发者调查报告,本次调研覆盖 5752 位受访开发者,主题涉及他们在使用 Go 1.18 全新功能特性(包括泛型、安全工具和工作区)时的真实感受。
3、在 Go 中进行 Web UI 开发[9]
基于 sunmao-ui[10] 库。
本文结合源码,分析sync.Map的实现思路和原理,希望为更多感兴趣的开发者提供一些经验和帮助。
本文来自 Go 爱好者投稿,作者:finley。
Golang在2022-03-15发布了V1.18正式版,里面包含了对泛型的支持,那么最新版本的泛型如何使用呢?有哪些坑呢?本文全面且详细的带你了解泛型在Golang中的使用。
1、go-sql-spanner[11]
Google Cloud Spanner 的 database/sql 驱动。
2、seaweedfs[12]
一个快速的分布式存储。
3、go-set[13]
Set 的泛型实现。
4、nset[14]
无符号整数的超快速和内存高效 Set 实现。
5、gojq[15]
jq 的纯 Go 实现。
6、bun[16]
适用于PostgreSQL、MySQL、MSSQL和SQLite的SQL-first Go ORM。
1、toxiproxy[17]
模拟混乱网络条件的 TCP 代理。
2、prolog[18]
Go 的 prolog 引擎。
这个周刊每周日发布,同步更新在Go语言中文网[19]和微信公众号[20]。
微信搜索"Go语言中文网"或者扫描二维码,即可订阅。
polaris1119/golangweekly: https://github.com/polaris1119/golangweekly
[2]提交 issue: https://github.com/polaris1119/golangweekly/issues
[3]Go 向后兼容讨论: https://github.com/golang/go/discussions/55090
[4]CodePerfect: https://codeperfect95.com/
[5]chroma 2.3 发布: https://github.com/alecthomas/chroma
[6]Liftbridge 1.9 发布: https://github.com/liftbridge-io/liftbridge
[7]bud 0.2.5 发布: https://github.com/livebud/bud
[8]Buf 1.8 发布: https://github.com/bufbuild/buf
[9]在 Go 中进行 Web UI 开发: http://www.myriptide.com/painless-web-ui-in-go/
[10]sunmao-ui: https://github.com/smartxworks/sunmao-ui/
[11]go-sql-spanner: https://github.com/googleapis/go-sql-spanner
[12]seaweedfs: https://github.com/seaweedfs/seaweedfs
[13]go-set: https://github.com/micnncim/go-set
[14]nset: https://github.com/bloeys/nset
[15]gojq: https://github.com/itchyny/gojq
[16]bun: https://github.com/uptrace/bun
[17]toxiproxy: https://github.com/Shopify/toxiproxy
[18]prolog: https://github.com/ichiban/prolog
[19]Go语言中文网: https://studygolang.com/go/weekly
[20]微信公众号: https://weixin.sogou.com/weixin?query=Go%E8%AF%AD%E8%A8%80%E4%B8%AD%E6%96%87%E7%BD%91