I don't have enough reputation to leave a comment answering your second question ("Assuming the connection is not in use do you know for how long it is cached before being closed, and is there any way to control this timeout period?") in the comments section, but I spent a lot of time figuring this out myself lately.
All of this information pertains Java 6, but is probably also accurate for many prior and later versions.
From what I can tell, the code boils down to:
- If the remote server sends a "Keep-Alive" header with a "timeout" value that can be parsed as a positive integer, that number of seconds is used for the timeout.
- If the remote server sends a "Keep-Alive" header but it doesn't have a "timeout" value that can be parsed as a positive integer and "usingProxy" is true, then the timeout is 60 seconds.
- In all other cases, the timeout is 5 seconds.
This logic is split between two places: around line 725 of sun.net.www.http.HttpClient (in the "parseHTTPHeader" method), and around line 120 of sun.net.www.http.KeepAliveCache (in the "put" method).
So, there are two ways to control the timeout period:
- Control the remote server and configure it to send a Keep-Alive header with the proper timeout field
- Modify the JDK source code and build your own.
One would think that it would be possible to change the apparently arbitrary five-second default without recompiling internal JDK classes, but it isn't. A bug (number 6238070; I'm only allowed two hyperlinks) was filed in 2005 requesting this ability, but Sun refused to provide it.