1. Go 结构体嵌套结构体指针,必须先初始化指针结构体,才能赋值

    go 结构体嵌套结构体指针,必须先初始化指针结构体,才能赋值

    2024/05/06 Go 踩过的坑

  2. Go test的一些容易忽略的约定俗成

    Go test 的一些容易忽略的约定俗成:TestMain、Example….

    2024/05/05 Go 踩过的坑

  3. Embedding in go

    Go doesn’t support inheritance in the classical sense; instead, in encourages composition as a way to extend the functionality of types. This is not a notion peculiar to Go. Composition over inheritance is a known principle of OOP and is featured in the very first chapter of the Design Patterns book.

    2024/05/04 Go

  4. 程序执行中的fast path

    在给Garnet贡献代码的时候,第一次遇到了这种情况,记录一下,之前只见过基本的理论。

    2024/04/16 优化 开源

  5. 软件体系结构 响应式架构

    代码地址:https://github.com/sa-spring/spring-webflux https://www.bilibili.com/video/BV1dt4y1y7bC

    2024/03/06 转载 架构

  6. 从 docker 网络模型到 k8s 网络模型——深入理解

    早期 Docker 网络模型由来及其弊端

    2024/02/23 K8s Docker 网络

  7. Envoy原理介绍及线上问题采坑

    Envoy原理介绍及线上问题采坑-张伟

    2024/02/20 Envoy K8s 网络

  8. 深入理解 go 里面的 for range

    深入理解 Go 里面的 for range

    2024/01/27 Go

  9. 一文彻底搞懂 cookie、session、token

    一文彻底搞懂 Cookie、Session、Token

    2024/01/24 HTTP

  10. Functional Options Pattern

    Functional Options Pattern

    2024/01/21 Go 设计模式