Type embedding: Golang’s fake inheritance | DoltHub Blog Differences between Procedural and Object Oriented Programming - GeeksforGeeks Differences between Procedural and Object Oriented Programming The SOLID Principles of Object-Oriented Programming Explained in Plain English
为什么老鸟要告诉你优先使用组合而不是继承?
Object Oriented Programming in Go
Dependency inversion principle
embedding
Composition over Inheritance
Trying Clean Architecture on Golang
The Clean Architecture
The Clean Architecture — Beginner’s Guide
Object Oriented Inheritance in Go
Object-Oriented Programming in GO
领域驱动设计概览
后端开发实践系列——领域驱动设计(DDD)编码实践
当中台遇上 DDD,我们该如何设计微服务?
领域驱动设计
ddd 是什么 domin-driven design; 软件架构/设计方法论: 实施一个复杂的系统;
战略: 拆分子领域; 战术: 各子领域的实现;control/service/model 三层架构的进一步; 4层架构 ddd 与微服务关系? ddd: 软件设计方法; 微服务: 软件的形态(组织形式)
微服务; 微服务如何拆分; 网关
根据经验;by experience;
把握原则;
高内聚,低耦合; 具体的做法;
DDD 业务;
overview what:
发送消息; 进程间通信 components: producer —> broker —–> consumer;
pros: 进程间通信方式 , 应用解耦
reliabilty: continue work when different part of your system go offine high performce async: producer continue work without waiting consumer Scalability: 按需增加 producer,consumer, queue cons:
无法即时得到反馈 use case:
验证码,邮件 大流量: 日志,秒杀 3. message queue 对比; kafka overview; 1. structure topic = N个partition(N replicas)
1. 可靠性保证; 发送保证:
request.required.acks: 接收保证:
min.insync.replicas: 分布式架构; 2. consumer how to cnsume
kafka 是有序的吗?
souce code
Go并发编程(十) 深入理解 Channel
Golang源码探索(二) 协程的实现原理
Goroutine Leaks - The Forgotten Sender
The Behavior Of Channels Author image
what:
管道;goroutine 之间 传输数据 ; g <—> channel < —> g
how: channel.send
1 2 3 4 5 6 7 if channe.receiveQueue.lengt==0 &&buffer.full ; block: sleep(current);channel.sendqueue.push(g) if channel.reqceveiqueue.length>0; g = receiveq.first; wakeup g; how 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 channel struct{ recevieQueue sendQueue buffer } sendtoChannel(data): if buffer.
Does one assembler instruction always execute atomically? [duplicate]
多图详解Go的互斥锁Mutex
Go并发编程(四) 深入理解 Mutex
【golang】sync.Mutex互斥锁的实现原理
go 读写锁实现原理解读
Semaphores in Process Synchronization
Lecture 6: architectural support for synchronization
详解go中的混合锁 - mutex
源码解读 Golang 的 sync.Map 实现原理
深度解密Go语言之sync.map
Deep Understanding of Golang Mutex
read-write atomic instruction what? 读和写原子操作,是实现锁的基础;
test and set
1 2 3 4 5 testAndSet(lockPtr *int) int{ int oldValue = *lockPtr; *lockPtr = 1 return oldValue } compare and swap 1 2 3 4 5 6 7 compareAndSwap(p *lockPtr,old int,new int) bool{ if *p=old{ return false; } *p = new; return true } 实现锁 testandset 1 2 3 4 5 6 7 8 volatile int lock = 0; void lock() { while (test_and_set(&lock) == 1); critical section // only one process can be in this section at a time lock = 0; // release lock when finished with the critical section } compare and swap 1 2 3 4 5 6 7 8 volatile int lock = 0; void lock(threadID) { while (compare_and_swap(&lock,0,threadID)); critical section // only one process can be in this section at a time lock = 0; // release lock when finished with the critical section } Locker why: data-race and cause overwrite
Assembly Programming Tutorial
函数调用之堆栈原理(二)
C/C++内存对齐详解
Data Alignment
关于内存对齐,看我
What is data alignment? - WolfSound
memory alignment what: 将数据排列在特定内存位置,以加快cpu访问数据的速度 a way of arranging data in memory so that it can be accessed faster by the processo
why: cpu 按照 word(32bit and 64bit)读取数据,如果不按照特定的位置排列好数据, 一个数据耗费更多次cpu时间去读取
example:
alignment non-alignment how to alignment primitive type 放置在特地位置
short: 2 bytes (aligned to even addresses)
short:2 字节(与偶数地址对齐) int: 4 bytes (aligned to addresses divisible by 4)
int:4字节(对齐到可被4整除的地址) non-primitive add padding: 插入填充字节