I was looking at this question:
How do you extract POST data in Node.js?
The second and third answer append data to the "body" var, and kill the connection when it is too large.
This makes sense to me, but what I don't understand is why no one does this for GET requests? There isn't any limit to the length of the parameter string of a GET request either. Can someone explain ?
Also, in the question above, why do they wait till 1e6 ? Isn't that a really high number, and high enough to slow down node ?