Tornado is an async server that also includes an async http client that plugs right in the server's event loop. This makes it really simple to build scalable web services that call other web services, which is what I mostly use it for.
I would love to do the same in Clojure but I have no idea where to start.
Ideally I would use an async server or framework in the style of Tornado or Twisted. But since Java has excellent thread support I guess I could also use an http lib that allows me to run requests in parallel.
Who has some hints or pointers?
S.
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clo...@googlegroups.com
> Note that posts from new members are moderated - please be patient with your first post.
> To unsubscribe from this group, send email to
> clojure+u...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
Take a look at Aleph http://github.com/ztellman/aleph
Regards,
BG
Sent from phone, please excuse brevity.
> Who has some hints or pointers?
github.com/momentumclj/momentum is another option. It is still evolving rapidly but I've had very
good experience with it.
MK