You must log in or register to comment.
This is so awesome and so far beyond my current knowledge!
I’m trying to learn and wrap my head around concurrency in Clojure recently. I only know asynchronous programming in Javascript. The mental model in JS for async itself, isn’t very complex. Because it’s a single thread. But in Clojure, you also have multiple threads so you can have multi threading and async at the same time.
From what I understand, Clojure has made it super simple, but I still haven’t understood it.
Personally, I hate awaiting async actions and prefer callbacks. Just execute when done, thanks. I don’t care in which order.
Same I still prefer promises in JavaScript over async await for this reason.





