DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26070>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=26070 [RFE] Allow streaming of POST methods via chunked transfer encoding. ------- Additional Comments From [EMAIL PROTECTED] 2004-01-16 14:35 ------- The point isn't just chunking. The real point is *streaming*. (of course, you can't have streaming without chunking). We send 100's of MB of data. We simply can't afford to buffer everything upfront. Even if we could afford the memory, in terms of raw performance, a full buffered solution is about half the speed of a streaming solution, because generating 10MB of data is a CPU intensive task. While the buffer is being created, the network and tbe other side are totally idle. With streaming, the client CPU (encoding), the server CPU (decoding) and the network all work simultaneously. The above solution was inspired by a thread in the mailing list: http://nagoya.apache.org/eyebrowse/[EMAIL PROTECTED]&msgId=712986 It just so happens that the solution for streaming is pretty easy, but not very useful without a good chunking implementation. Thanks Moh --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]