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.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 work as in nodejs; by doing two reqs > they are sequential, ie, the dates that I'm printing have two secs. > Basically I want that the server prints two "identical" accpt dates, and > the response should show that (now not working): > > $ tail -f reqs.txt | nc 127.0.0.1 8888 > > > HTTP/1.1 200 OK > Date: Mon, 22 Feb 2016 20:29:10 GMT > Transfer-Encoding: chunked > Server: Jetty(7.6.8.v20121106) > > 48 > id: 1, uri: /a > Mon Feb 22 20:29:10 WET 2016 > Mon Feb 22 20:29:12 WET 2016 > 0 > > HTTP/1.1 200 OK > Date: Mon, 22 Feb 2016 20:29:12 GMT > Transfer-Encoding: chunked > Server: Jetty(7.6.8.v20121106) > > 48 > id: 2, uri: /b > Mon Feb 22 20:29:12 WET 2016 > Mon Feb 22 20:29:14 WET 2016 > > > I'm guessing that this is either my mistake with core.async or the adapter. > > Thanks > -- 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.
