每日一谚:Always write benchmark test for api which is sensitive with performance

Go技术生态

  1. Go语言错误处理之道 - https://www.bacancytechnology.com/blog/golang-error-handling
  2. 用Go实现网络抓取 - https://javarustacean.wordpress.com/2021/06/21/web-scrapping-in-go/
  3. liqo: 实现跨Kubernetes集群的动态和分散的资源共享 - https://github.com/liqotech/liqo
  4. 如何在Go中正确使用基本认证 - https://www.alexedwards.net/blog/basic-authentication-in-go
  5. OpenFaaS和Inlets作者Alex Ellis出版新书《Everyday Go》- https://blog.alexellis.io/i-wrote-a-book-about-golang/
  6. Dud:一个与源代码一起进行数据版本管理和建立数据管道的工具 - https://github.com/kevin-hanselman/dud/
  7. MOSN 子项目 Layotto:开启服务网格+应用运行时新篇章 - https://mp.weixin.qq.com/s/gKY7dsVRU0glf-n-fEsr3g
  8. traefik Go维护者指南 - https://doc.traefik.io/traefik/contributing/maintainers-guidelines/
  9. 2021年的软件开发人员短缺即将到来 - https://cacm.acm.org/magazines/2021/7/253461-the-2021-software-developer-shortage-is-coming/fulltext
  10. 三万字 | 2021 年 Rust 行业调研报告 - https://mp.weixin.qq.com/s/9rjeVgVzmrC0wWhV4wA9FA

Go技术进阶专栏导读

我们现在编写的大部分现代应用程序都离不开与时间相关的操作。常见的时间操作包括:获取当前时间、时间比较、时区相关的时间操作、时间格式化、定时器(一次性定时器timer和重复定时器ticker)的使用等。Go语言通过标准库的time包为常见时间操作提供了全面的支持。