Re: [ANN] http-kit 2.0.0 released

2013-05-04 Thread Shen, Feng
> Will there be a client-side for browsers in ClojureScript or Javascript? I mean something similar to sockjs implementation. I have't plan to do that yet. http-kit is focused to provide a HTTP library for Clojure. 沈锋 On Sat, May 4, 2013 at 6:48 PM, Hoàng Minh Thắng wrote: > On Friday, Marc

Re: [ANN] http-kit 2.0.0 released

2013-05-04 Thread Shen, Feng
> I hope support autoload .It's very useful for develop! http://http-kit.org/migration.html#reload 沈锋 On Sat, May 4, 2013 at 9:08 PM, 张保良 wrote: > I hope support autoload .It's very useful for develop! > > 在 2013年3月29日星期五UTC+8下午2时03分38秒,Feng Shen写道: > >> Hello folks. >> >> I just released ve

Re: [ANN] http-kit 2.0.0 released

2013-05-04 Thread 张保良
I hope support autoload .It's very useful for develop! 在 2013年3月29日星期五UTC+8下午2时03分38秒,Feng Shen写道: > > Hello folks. > > I just released version 2.0.0 of http-kit. > > > *2.0.0 (2013/3/29)* > >1. Unify WebSocket and HTTP long polling/streaming with Channel >protocol and with-channel

Re: [ANN] http-kit 2.0.0 released

2013-05-04 Thread Hoàng Minh Thắng
On Friday, March 29, 2013 1:03:38 PM UTC+7, Feng Shen wrote: > > Hello folks. > > I just released version 2.0.0 of http-kit. > Looks great, Feng Shen. I couldn't find a road-map so I ask here. Will there be a client-side for browsers in ClojureScript or Javascript? I mean something similar to so

Re: [ANN] http-kit 2.0.0 released

2013-05-03 Thread Shen, Feng
> regarding the perf. improvements, is it client or server? It's the server. Due to IO model change: One IO thread (reading and writing) => One thread reading, decoding + many threads writing 沈锋 On Sat, May 4, 2013 at 7:54 AM, László Török wrote: > Hi, > > regarding the perf. improvements,

Re: [ANN] http-kit 2.0.0 released

2013-05-03 Thread László Török
Hi, regarding the perf. improvements, is it client or server? Thx Las 2013/5/3 Michael Klishin > > 2013/5/3 Feng Shen > >> Compare to 2.0.0, noticeable changes: >> >>1. Much faster: about 30%~80% faster. >>2. The client support HTTPS now >>3. :as option to do client output coerc

Re: [ANN] http-kit 2.0.0 released

2013-05-03 Thread Michael Klishin
2013/5/3 Feng Shen > Compare to 2.0.0, noticeable changes: > >1. Much faster: about 30%~80% faster. >2. The client support HTTPS now >3. :as option to do client output coercion > > Not that noticeable changes: > >1. few minor bugs fixes >2. less RAM usage > > The full update l

Re: [ANN] http-kit 2.0.0 released

2013-05-03 Thread Feng Shen
Hi, just released 2.1.0. [http-kit "2.1.0"] ; Add to your project.clj. Compare to 2.0.0, noticeable changes: 1. Much faster: about 30%~80% faster. 2. The client support HTTPS now 3. :as option to do client output coercion Not that noticeable changes: 1. few minor bugs fixes

Re: [ANN] http-kit 2.0.0 released

2013-03-29 Thread xumingmingv
Good Job! 在 2013-3-29,下午2:03,"Shen, Feng" 写道: > Hello folks. > > I just released version 2.0.0 of http-kit. > > > 2.0.0 (2013/3/29) > Unify WebSocket and HTTP long polling/streaming with Channel protocol and > with-channel (API breaks with the RC) > WebSocket support sending and receiving

[ANN] http-kit 2.0.0 released

2013-03-28 Thread Shen, Feng
Hello folks. I just released version 2.0.0 of http-kit. *2.0.0 (2013/3/29)* 1. Unify WebSocket and HTTP long polling/streaming with Channel protocol and with-channel (API breaks with the RC) 2. WebSocket support sending and receiving binary frame with byte[] 3. Support HTTP streamin