z*range commands now receive long instead of int. #242

This commit is contained in:
Ivo Ramirez
2011-12-22 22:40:36 +01:00
committed by ivowiblo
parent be163acd52
commit 75e52b9a26
7 changed files with 41 additions and 40 deletions

View File

@@ -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() {