gRpc 实践到原理

简述 gRpc gRpc 是什么? 官网简介 >gRPC is a modern open source high performance RPC framework that can run in any environment. It can efficiently connect services in and across data centers with pluggable support for load balancing, tracing, health checking and authentication. It is also applicable in last mile of distributed computing to connect devices, mobile applications and browsers to backend services. Wiki

Golang sync.Mutex 源码分析

序 本文整理了锁的分类与实现,抽取了 golang 1.12 的源码分析, 什么是锁? 当我们在谈论锁的时候,我们在谈什么? Wiki In computer science, a lock or mutex (from mutual exclusion) is a synchronization mechanism for enforcing limits on access to a

细说 IoC

序 IoC 是一种设计原则,降低代码控制流之间的耦合,本文将细说 IoC 的思想与基本实现,以及在 Spring 中的实现原理。 IoC 控制反转是什么? Wiki In software engineering, inversion of control (IoC) is a programming principle(n.

Docker 那些事

序 从今年 3 月份实习接触 golang 起,Docker 就时不时出现, 也曾看过几篇简介博文,但都没有后续。本文就对于 docker 进行一次简单的探究。 Docker是什么