I am making several http requests to a particular host using python’s urllib2 library. Each time a request is made a new tcp and http connection is created which takes a noticeable amount of time. Is there any way to keep the tcp/http connection alive using urllib2?
I am making several http requests to a particular host using python’s urllib2 library.
Share
If you switch to httplib, you will have finer control over the underlying connection.
For example:
This would send 2 HTTP GETs on the same underlying TCP connection.