-
jedisClient.expire(key, expiry); We see this warning for the method expire(byte[], int) from the type BinaryJedisCommands is deprecated. Any suggestion on alternative? Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
sazzad16
Jul 16, 2021
Replies: 1 comment 4 replies
-
Try expire(byte[], long) method. E.g. |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
anil181
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Try expire(byte[], long) method. E.g.
jedisClient.expire(key, (long) expiry);