Tag: System Design 101: Concurrency vs Parallelism in System Design

  • System Design 101: Concurrency vs Parallelism in System Design

    并发与并行在系统设计中的区别 Understanding the distinction between concurrency and parallelism is crucial in system design. As Rob Pike, one of the creators of GoLang, stated: 理解并发和并行之间的区别在系统设计中至关重要。正如 GoLang 的创始人之一 Rob Pike 所说: "Concurrency is about dealing with lots of things at once. Parallelism is about doing lots of things at once." “并发是处理很多事情。并行是同时做很多事情。” What…