Feng Shen

Results 40 comments of Feng Shen

Yes, websocket is better for server push event. And go has very good websocket support: http://code.google.com/p/go/source/browse/?repo=net#hg%2Fwebsocket The problem is IE.

Currently, http-kit buffer the whole response in memory and only deliver the response after all bytes received. http-kit will use 1M of ram for 1M of response (A []byte array)....

Hi, @dgrnbrg , it is possible to change to code to make it possible. The client and server both read decode the whole response/request before pass it to other logic....

http-kit does not depend on Netty. > The thing I want to do is, at the byte level, put bandwidth caps onto individual connections Qos or priority? Netty has pretty...

I'd love to add websocket clent support too. I've try it, the only thing that prevent me from doing is: I can not think of a Good enough API. Can...

Hi, @kanaka @cgmartin , Thanks for suggestion. I will try to write some code, make it working, then we can experiment it, design the interface. I'd like to provide a...

Hi, I'am not sure the time schedule for http-kit has support for websocket client. There is another one that's maybe useful: https://github.com/neotyk/http.async.client I've used it to do the unit test...

Will dig into, server should never hangs, especially triggered by input.

Cookie is not implemented. Cookie is needed for redirect. I will try to figure it out.

People may use httpkit for crawler, then cookie handing is essential. Actually, the initial motivation of writing httpkit's client is for crawling RSS feed, since I need a fast and...