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

@@ -100,9 +100,9 @@ public final class Protocol {
return read;
}
private Integer processInteger(final RedisInputStream is) {
private Long processInteger(final RedisInputStream is) {
String num = is.readLine();
return Integer.valueOf(num);
return Long.valueOf(num);
}
private List<Object> processMultiBulkReply(final RedisInputStream is) {