In Express 2 the guide clearly stated that every single request should always be ended using `res.end`.
Now I notice that res.end is not in the API documentation, and that it is not mentioned anywhere.
It is however part of the node http server Response object, which Express inherits from.
Therefore my question is if I still need to call res.end for each request?
Tom