On Sat, Sep 17, 2016 at 11:37:38PM -0700, Matan Safriel wrote: > Hi, > > It's very easy to see how core.async solves callback hell for front-end > development with clojurescript. > In what use cases would you use it for server-side? we already have > non-blocking IO from Java, and we have clojure agents. So what's a bunch of > salient use cases? > Are there prominent clojure http server implementations which rely on it > for transcending the threaded web service paradigm? >
Decoupling components within a system, similar to what one would use queues or a messaging architecture for. Used it extensively in two projects (one open source, one for a client) some years ago. Rather than coupling the components via namespace dependencies and a call API, I just had the components passing data via async channels (queues), including pub/sub and topic subscription. Worked great for its intended purpose. -ken -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to [email protected] Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/clojure?hl=en --- You received this message because you are subscribed to the Google Groups "Clojure" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
