Re: [Help] core.async and jetty

2016-02-23 Thread Miguel Ping
Thanks Zach, I would love to do an unfair comparison between clojure and nodejs :) Gonna give it a spin On Tuesday, February 23, 2016 at 5:09:50 PM UTC, Zach Tellman wrote: > > For what it's worth, Aleph will handle pipelined requests in parallel: > https://github.com/ztellman/aleph. > > On Tue

Re: [Help] core.async and jetty

2016-02-23 Thread Zach Tellman
For what it's worth, Aleph will handle pipelined requests in parallel: https://github.com/ztellman/aleph. On Tuesday, February 23, 2016 at 4:46:23 AM UTC-8, Miguel Ping wrote: > > Thanks, thats what I eventually found out. > > On Tuesday, February 23, 2016 at 12:39:00 PM UTC, jonah wrote: >> >> H

Re: [Help] core.async and jetty

2016-02-23 Thread Miguel Ping
Thanks, thats what I eventually found out. On Tuesday, February 23, 2016 at 12:39:00 PM UTC, jonah wrote: > > Hi Miguel- pipelining is essentially http keep alive. A very old jetty > thread > > > http://jetty.4.x6.nabble.com/HTTP-1-1-Request-Pipelining-handling-td18682.html > >

Re: [Help] core.async and jetty

2016-02-23 Thread Jonah Benton
Hi Miguel- pipelining is essentially http keep alive. A very old jetty thread http://jetty.4.x6.nabble.com/HTTP-1-1-Request-Pipelining-handling-td18682.html indicates that for simplicity jetty will execute subsequent requests on the kept-alive socket serially. Jonah On Mon, Feb 22, 2016 at 3:3

Re: [Help] core.async and jetty

2016-02-22 Thread Miguel Ping
By the way, I can see that jetty is reusing the same HttpInput instance on the request (most probably because of pipelining) On Monday, February 22, 2016 at 8:33:37 PM UTC, Miguel Ping wrote: > > Hi guys, > > I'm trying to replicate an experiment on nodejs and http pipelining: > http://blog.yld.

[Help] core.async and jetty

2016-02-22 Thread Miguel Ping
Hi guys, I'm trying to replicate an experiment on nodejs and http pipelining: http://blog.yld.io/2016/02/08/squeeze-the-juice-out-of-node/ This is what I got right now: https://gist.github.com/mping/98bb8eb9faf3c51f9889 (using *com.ninjudd/ring-async*) Problem is I can't get pipelining to wor