Implemented ZREMRANGEBYSCORE

This commit is contained in:
Jonathan Leibiusky
2010-08-07 19:37:16 -03:00
parent bb54328802
commit 84f4c45004
4 changed files with 29 additions and 2 deletions

View File

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