Slow transfers in Jetty with chunked transfer encoding at certain buffer size
It seems that to get good performance with Jetty, you must either:
- When calling
setContentLength(no chunked transfer encoding) and use a buffer forwritethat's the same size as the response buffer size. - When using chunked transfer encoding, use a write buffer that's at least 12 bytes smaller than the response buffer size, and call
flushafter each write.
经验证没有问题,但是非chunked对服务端的性能消耗较大。
引用:http://stackoverflow.com/questions/9031311/slow-transfers-in-jetty-with-chunked-transfer-encoding-at-certain-buffer-size
4049

被折叠的 条评论
为什么被折叠?



