每日一谚:"A good API is not just easy to use but also hard to misuse." - JBD

Go技术生态

  1. 微抽象:Go的函数钩子 - https://world.hey.com/mat/tiny-abstractions-function-hooks-in-go-92924f11
  2. Java真的比Go性能好吗?- https://dabase.com/blog/2021/java-vs-go-load-test/
  3. kubectl-cost: 展示k8s集群负载情况的kubectl插件工具 - https://github.com/kubecost/kubectl-cost
  4. Go服务端渲染引擎与组件 - https://github.com/yuriizinets/go-ssc
  5. 经典旧文:使用Go从头实现容器 - https://medium.com/@ssttehrani/containers-from-scratch-with-golang-5276576f9909
  6. Boyer-Moore高性能字符串搜索算法的go实现 - https://github.com/sarpdag/boyermoore
  7. k8s的主主PostgreSQL联邦集群 - https://blog.crunchydata.com/blog/active-active-postgres-federation-on-kubernetes
  8. cron表达式解析库 - https://github.com/adhocore/gronx
  9. 业余编译器编写者的资源 - https://c9x.me/compile/bib/
  10. 图形化展示Go应用module依赖的详细信息 - https://github.com/nikolaydubina/import-graph
  11. 管理单体应用与微服务的可靠性:SRE的最佳实践 - https://stackpulse.com/blog/monoliths-vs-microservices-best-practices/
  12. 我为什么要在2021年使用Go - https://medium.com/@mdcfrancis/why-do-i-write-golang-in-2021-3ab8f2fff31c

Go技术进阶专栏导读

“没有数据支撑的过早决策是万恶之源”! 我们可以通过为被测对象建立性能基准的方式去获得决策是否优化的支撑数据,同时我们也可以判断出对代码所做的任何更改是否对代码性能有所影响。而性能基准测试在 Go 语言中是“一等公民”,在Go中可以很方便的实施这一策略。Go进阶专栏“改善Go语⾔编程质量的50个有效实践”的第36篇文章《为被测对象建立性能基准》 https://www.imooc.com/read/87/article/2439 将为你详解说明在Go中建立性能基准测试的最佳实践。