Re: Clojure + Web Services + Web Sockets

2013-02-12 Thread Feng Shen
I updated http-kit's server documentation: http://http-kit.org/server.html How http-kit is used to serve both HTTP and websocket: http://http-kit.org/server.html#routing Cheers, Feng On Tuesday, February 12, 2013 7:36:46 AM UTC+8, Ryan T. wrote: > > Thanks both for your answers. > > @Bob, I did

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Matthew
+1 for Aleph. I've used it loads and it's great. On Tuesday, February 12, 2013 10:12:57 AM UTC+11, Ryan T. wrote: > > Unless someone has to suggest something better, it seems that the best way > to achieve what i want is to use aleph > which > allows you to i

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Ryan T.
Thanks both for your answers. @Bob, I didn't know the existance of http-kit; seems promising. There is also a post 600k concurrent HTTP connections, with Clojure & http-kit, very interesting. I also want to add to my own original qu

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Devin Walters
Check out browserchannel: http://thegeez.net/2012/04/03/why_browserchannel.html Cheers, '(Devin Walters) On Feb 11, 2013, at 5:22 PM, Bob Hutchison wrote: > > On 2013-02-11, at 6:12 PM, Ryan T. wrote: > >> Unless someone has to suggest something better, it seems that the best way >> to achi

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Bob Hutchison
On 2013-02-11, at 6:12 PM, Ryan T. wrote: > Unless someone has to suggest something better, it seems that the best way to > achieve what i want is to use aleph which allows you to initialize it with a > wrapped ring handler. You might have a look at http://http-kit.org/ Cheers, Bob > > I

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Justin Steward
On Tue, Feb 12, 2013 at 9:54 AM, Ryan T. wrote: > I was hoping to be able to build my clojure project and use jetty in > development and tomcat on production. I can't add anything on the websockets side, but one thing that's been beaten into me over the past few years, is to develop on the same s

Re: Clojure + Web Services + Web Sockets

2013-02-11 Thread Ryan T.
Unless someone has to suggest something better, it seems that the best way to achieve what i want is to use aleph which allows you to initialize it with a wrapped ring handler. If you have more details on the issue or alternatives I would love to hear abou