How to set redis client resource in Spring Boot 2.5.9? #2411
Replies: 2 comments
-
The DNS resolver is deprecated because it resolves IP addresses synchronously. If you're good with JVM defaults regarding DNS resolution, there's no need to have a custom DNS resolver object. If you need customization, then you can either continue using Lettuce's DNS config mechanism or you can switch to netty's |
Beta Was this translation helpful? Give feedback.
0 replies
-
Thank you @mp911de 😄 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello.
I'm going to set up redis in springboot environment using lettuce.
We used the previous version of lettuce 5.3.7 to set up the project as follows.
I proceeded to set up the project by referring to the official document of AWS.
However, in the process of setting up a new project, it was discovered that the version of lettuce was changed to 6.1.6 and that the
dnsResolver()
was Deprecated.Could you tell me which method I should use to use the above settings in 6.1.6 version?
Beta Was this translation helpful? Give feedback.
All reactions