Replies: 1 comment 2 replies
-
@jonatiao Not exactly. BUT but default Jedis uses |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello Everyone, first of all thx for your work on Jedis!
We are using redis.clients:jedis:jar:3.8.0.
Some servers has both IPV4(A) and IPV6(AA) addresses, this is called dual-stack and it's normal for most of the cloud resources.
Sometimes both addresses responde fine.. but sometimes, most of the time the ipv6 address does not. So they "invented" the happy eyeballs, which in summary, fallback fast to ipv4 when a problem occurs.
The recommendation for clients that consume those dual stack services is to implement RFC6555.
I'm reaching you guys because I see this behavior, sometimes, not too rare, in our services when connecting to azure cache for redis we get a long wait for ipv6 and we don't see the fallback to ipv4.
For instance, as an example, Firefox has this implemented as a "about:config" network.http.fast-fallback-to-IPv4.
Jedis has anything like it?
thx!
Beta Was this translation helpful? Give feedback.
All reactions