How does the JVM DNS cache deal with DNS round robin? Does it cache all IP addresses for domain and then rotate among them, or does it cache one IP address and then use it for all future requests until cache expires?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
It seems the JVM does not rotate the IP addresses. It just picks up the one address and uses it for the lifetime of the process. Check out this article from SUN/Oracle. The only way out seems to be either tun off the DNS caching altogether or keep a low ttl time. Check out the following link as well. |
|||
|
|