Replies: 1 comment 2 replies
-
Here you'll find all the breaking changes from Jedis 3.x to Jedis 4.x. You're concerned about following and so change your code accordingly:
There's a |
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 All,
I'm upgrading my current jedis library from 2.9.0 to 4.3.1 and I'm facing an issue which is preventing me from creating jar using gradle command.
Description -
Earlier with Jedis 2.9.0, we were using following configuration while creating the connection:
But in Jedis 4.3.1, since there is no constructor for JedisPoolConfig, I had to create the object for GenericObjectPoolConfig as below:
And everything was working as expected on local, it was fetching the result from staging server correctly and even handling load as well
But when I tried building the project using gradle command (gradlew clean build) it gave me below error -
I know the constructor is not available of same type but somehow it was working fine on local then why it is giving issue while creating the build. Please correct me if I'm making any mistake.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions