nodejs / performance

Node.js team focusing on performance
MIT License
376 stars 7 forks source link

Remove double buffer in http.IncomingMessage #148

Open mcollina opened 7 months ago

mcollina commented 7 months ago

http.IncomingMessage is an instance of Readable, which does buffering. However the data is coming from a socket, which also does buffering. If we could remove the Readable buffering, we could remove quite a bit of overhead.

This might be too breaking.

147