All tags
Content tagged with "concurrency" (4)
All content across blogs, linklog, and books with this tag.
Links
- · youtube.comConcurrency is not ParallelismConcurrency is how you organize the work, parallelism is whether you have enough workers to do it simultaneously, and most people mix the two up.
- · journal.stuffwithstuff.comWhat Color is Your Function?Once you make one function async, every function that calls it has to be async too, and that's not a bug, it's a language design problem nobody solved cleanly.
- · jakearchibald.comTasks, Microtasks, Queues and SchedulesWhy a promise callback runs before a setTimeout of zero. Archibald walks the event loop's two queues closely enough that async ordering stops surprising you.