z*range commands now receive long instead of int. #242
This commit is contained in:
@@ -113,6 +113,7 @@ public class Connection {
|
||||
}
|
||||
|
||||
public Connection() {
|
||||
|
||||
}
|
||||
|
||||
public void connect() {
|
||||
@@ -185,7 +186,7 @@ public class Connection {
|
||||
public Long getIntegerReply() {
|
||||
flush();
|
||||
pipelinedCommands--;
|
||||
return (Long) protocol.read(inputStream);
|
||||
return (Long)protocol.read(inputStream);
|
||||
}
|
||||
|
||||
public List<String> getMultiBulkReply() {
|
||||
|
||||
Reference in New Issue
Block a user