mirror of
https://github.com/danog/amp.git
synced 2024-11-27 04:24:42 +01:00
836 B
836 B
layout | permalink |
---|---|
docs | / |
Managing Concurrency
The weak link when managing concurrency is humans; we simply don't think asynchronously or in parallel. Instead, we're really good at doing one thing at a time and the world around us generally fits this model. So to effectively design for concurrent processing in our code we have a couple of options:
- Get smarter (not feasible);
- Abstract concurrent task execution to make it feel synchronous.
Amp provides an event loop, promises and asynchronous iterators as building blocks for (fully) asynchronous libraries and applications. Coroutines make asynchronous code feel as synchronous as synchronous code.
Start with the Introduction to Event Loops.