Fork me on GitHub
#joker
<
2019-11-26
>
hlship23:11:57

Looking at https://github.com/candid82/joker/commit/a187d551fffa62e379972777dc9f410e97fae634 , it looks like joker.core/go is more like clojure.core.async/thread than clojure.core.async/go. Either way I'm excited for the async potential.

👍 4
Candid03:11:08

not quite, since thread spawns a separate thread while Joker's go doesn't. Joker remains single threaded.

Candid03:11:56

it's more like ClojureScript's go I think.

hlship17:11:54

I was thinking about how JVM go rewrites your code like crazy and JVM thread just wraps it in a function for execution on a thread. Not as familiar with CLS go.