You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The text was updated successfully, but these errors were encountered:
sharp00k
changed the title
JedisClusterZSetCommands. reverseRangeByLex parameter issue
JedisClusterZSetCommands. reverseRangeByLex parameter order issue
Mar 15, 2021
org.springframework.data:spring-data-redis:2.4.5
try {
if (limit.isUnlimited()) {
return connection.getCluster().zrevrangeByLex(key, min, max);
}
return connection.getCluster().zrevrangeByLex(key, min, max, limit.getOffset(), limit.getCount());
} catch (Exception ex) {
throw convertJedisAccessException(ex);
}
.zrevrangeByLex(key, min, max) -> .zrevrangeByLex(key, max,min);
parameter order issue
The text was updated successfully, but these errors were encountered: