Scores should be represented as doubles, not ints
This commit is contained in:
committed by
Jonathan Leibiusky
parent
6a7b1db319
commit
366b2a05c2
@@ -697,7 +697,7 @@ public class Jedis {
|
||||
return client.getIntegerReply();
|
||||
}
|
||||
|
||||
public int zremrangeByScore(String key, int start, int end) {
|
||||
public int zremrangeByScore(String key, double start, double end) {
|
||||
checkIsInMulti();
|
||||
client.zremrangeByScore(key, start, end);
|
||||
return client.getIntegerReply();
|
||||
|
||||
Reference in New Issue
Block a user