Skip to content
gqlxj1987's Blog
Go back

Golang Real World Concurrency Bugs

Edit page

原文链接

主要分析了Docker, Kubernetes, gRPC的代码,

To understand Go concurrency bugs and the comparison between message passing and shared memory, we propose to categorize concurrency bugs along two orthogonal dimen-sions: the cause of bugs and their behavior. Along the cause dimension, we categorize bugs into those that are caused by misuse of shared memory and those caused by misuse of message passing. Along the second dimension, we separate bugs into those that involve (any number of) goroutines that cannot proceed (we call them blocking bugs) and those that do not involve any blocking (non-blocking bugs)


Edit page
Share this post on:

Previous Post
UidGenerator
Next Post
Isolating Microservices