惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Blog of Author Tim Ferriss
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
宝玉的分享
宝玉的分享
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Last Week in AI
Last Week in AI
博客园 - 司徒正美
M
MIT News - Artificial intelligence
人人都是产品经理
人人都是产品经理
WordPress大学
WordPress大学
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
B
Blog
V
V2EX
J
Java Code Geeks
D
Docker
博客园 - 叶小钗
The Cloudflare Blog
量子位
博客园_首页
MongoDB | Blog
MongoDB | Blog

Golang Weekly

Building cgo code without a C compiler? Go code can now run before your OS does Generic methods land in Go 1.27 A slightly unusual issue, in three acts An interactive tour of Go 1.27 A plan to bring generic collections to Go 1.28 Go can't kill a stuck goroutine Compile-time OpenTelemetry instrumentation for Go How Go makes TypeScript's compiler 10x faster Gin: 12 years, 88K stars, and zero broken APIs Comparing six Go cache designs Go 1.27 Release Candidate 1 Go security issues worth auditing for Go experiments, explained Generic methods are a-go for Go 1.27 pkg.go.dev gets an official API Why Cilium vendors every Go module in 2026 11 security fixes land in Go Golang Weekly Issue 598: April 24, 2026 What it takes to add new syntax to Go Golang Weekly Issue 596: April 10, 2026 Golang Weekly Issue 595: March 27, 2026 Golang Weekly Issue 594: March 20, 2026 Golang Weekly Issue 593: March 13, 2026
Three new Go proposals
2026-05-01 · via Golang Weekly

Zero-Config Go Heap Profiling — Go’s runtime samples heap allocations automatically, but the linker disables this in apps that don’t import runtime/pprof or net/http/pprof. This tour of runtime.mbuckets and /proc/<pid>/mem is a good read if you’ve wondered where pprof data actually lives, or how to grab a heap profile from a process you can’t redeploy.

Nikolay Sivko

🎉 GopherCon 2026: August 3-6 in Seattle, WA — Tickets for this year’s GopherCon are now available, including for a variety of workshops from folks like Bill Kennedy and Johnny Boursiquot. The conference agenda is filling out nicely, too, but the final reveal of all the main talks isn’t till next week.

GopherCon

NEW GO PROPOSALS:

Swissing a Table — A look at building a Swiss table (the idea behind Go’s new map implementation), one concept at a time, with benchmarks to see what effect each new technique has. The bit-twiddling section near the end is a highlight.

Phil Pearl

📄 Choosing a Go Logging Library in 2026 – Rounds up Slog, Zerolog, Zap, and others. Dash0

📄 Building a Userspace TCP-Over-UDP Stack in Pure Go – Built for a P2P AI agent network stack called Pilot Protocol. Philip Stayetski

📄 It's A Lock: sync.Mutex in Go – A clear, beginner-friendly walk through sync.Mutex. John Arundel

📄 Peeking Into Go Struct Tags Redowan Delowar

Rapid 1.3: Property-Based Testing Library — Checks that properties you define hold for a large number of automatically generated test cases. If a failure is found, the failing case is automatically minimized before presentation. This example on the Go Playground shows off the core idea.

Gregory Petrosyan

Limen: A Composable Authentication Library — A plugin-first authentication library that ships with the essentials (session management, cookie handling, rate limiting, security primitives) but then lets you compose the rest of the stack where you need username/password, OAuth 2.0, 2FA, etc. GitHub repo.

Brian Iyoha

  • MongoDB Go Driver 2.6 – The official MongoDB driver adds support for Intelligent Workload Management (IWM) and ingress connection rate limiting.

  • Go-MySQL-Driver 1.10 – MySQL driver for database/sql. The first notable release in a year and now modernized for Go 1.22+.

  • bleve 2.6 – Long-standing text/numeric/geo-spatial/vector indexing library.

  • Chroma 2.24 – Pure Go syntax highlighter. Adds/updates several lexers.

  • rqlite 10.0 – Go-powered, SQLite-backed fault-tolerant database.

  • fsnotify v1.10.0 – Cross-platform filesystem notifications library.

  • ✉️ gog 0.14 – CLI interface for Gmail, Calendar, Drive, etc.

  • Fiber 3.2 – Express-inspired web framework.