Re: Clojure lib for blocking io ?

2014-04-28 Thread Alex Miller
Java NIO has support for this and is accessible via interop. -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your fi

Re: Clojure lib for blocking io ?

2014-04-27 Thread makkalot
Hi, Yeah, what I mean is non-blocking io or async io. Thanks. On 04/28/2014 09:07 AM, Atamert Ölçgen wrote: On Mon, Apr 28, 2014 at 1:50 PM, makkalot > wrote: Hi, What would be recommended way of handling lots of blocking io concurrent connections ?

Re: Clojure lib for blocking io ?

2014-04-27 Thread Atamert Ölçgen
On Mon, Apr 28, 2014 at 1:50 PM, makkalot wrote: > Hi, > > What would be recommended way of handling lots of blocking io concurrent > connections ? Apparently, core.async is not very good match for this job, > because of its limited thread pool and thread (thread macro) per > connection design.

Clojure lib for blocking io ?

2014-04-27 Thread makkalot
Hi, What would be recommended way of handling lots of blocking io concurrent connections ? Apparently, core.async is not very good match for this job, because of its limited thread pool and thread (thread macro) per connection design. Which library would be a good fit for that ? aleph, pulsa