Implemented ZREMRANGEBYRANK

This commit is contained in:
Jonathan Leibiusky
2010-08-07 18:34:42 -03:00
parent 111eb11440
commit bb54328802
4 changed files with 30 additions and 2 deletions

View File

@@ -572,4 +572,9 @@ public class Jedis {
}
return set;
}
public int zremrangeByRank(String key, int start, int end) {
client.zremrangeByRank(key, start, end);
return client.getIntegerReply();
}
}