Clojure
Why I tend to avoid core.async?
It’s no surprise that I don’t like core.async
very much. For starters, it make my functional composition looks like imperative programming again. There’s also multiple issues that you need to be aware of (like, don’t use async/put!
because you will have problems, deadlocks that are difficult to predict, go
blocks don’t compose over functions so you loose lots of helper macros like delay
).
But the most important reason is that most of the time, I’m working in ClojureScript. And it’s impossible to migrate callback to core.async.
Well, you may be tempted to write something like:
(js/someFunction "i'm async" "lol" #(async/put! some-channel %))
And one day or another you’ll have the dreadful Assert failed: No more than 1024 pending puts are allowed error. There are multiple ways around this problem, but none of then work if you can’t lose messages.
(more…)