We are using HTTPClient 4.3.6 to conduct Multipart File uploads over HTTPs. As the file size grows bigger the upload operation becomes chatty. Lot of connections (contextually related) are established in short span of time.
In a bid to reduce the time taken for SSL handshake for these request we want to enable SSL session reuse. 1. How to do this? Is this something that is enabled by default? 2. How to verify that SSL sessions are indeed being reused and handshakes are abbreviated? 3. What are the beat practices around SSL session reuse? Please advise or point to relevant documentation. Thank you.