incr/decr operate on 64-bit numbers. Switching from Integer to Long

This commit is contained in:
Neil Gentleman
2010-11-23 16:52:18 -08:00
committed by Jonathan Leibiusky
parent a1815f3881
commit d18cc4bd13
20 changed files with 397 additions and 379 deletions

View File

@@ -163,9 +163,9 @@ public class Connection {
return (byte[]) protocol.read(inputStream);
}
public Integer getIntegerReply() {
public Long getIntegerReply() {
pipelinedCommands--;
return (Integer) protocol.read(inputStream);
return (Long) protocol.read(inputStream);
}
public List<String> getMultiBulkReply() {