in clojurescript, is it OK to perform IO in go
/`go-loop` blocks?
...in JVM clj it certainly isn't, but maybe in cljs it doesn't matter given js IO doesn't block
it's blocking i/o that's problematic with core.async on the jvm, rather than i/o per se @vemv - non-blocking i/o returning promises or channels is ok. js non-blocking i/o is fine too
thanks!
Ya, even on JVM non blocking IO is fine within a go block