Skip to content

JedisClusterZSetCommands. reverseRangeByLex parameter order issue #1998

Closed
@sharp00k

Description

@sharp00k

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

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions