Install FastSocketStream from SqueakMap. Once installed, change HttpAdaptor class>>readAndWriteToSocket:service: to
readAndWriteToSocket: aSocket service: httpService
^self readAndWriteTo: (
(FastSocketStream on: aSocket)
timeout: self dataTimeout;
autoFlush: false;
yourself)
service: httpService
-Courtesy of Dmitry Dorofeev