fixed many pipeline requests that were returning the wrong types

This commit is contained in:
samhendley
2013-01-10 00:50:19 -05:00
parent 4c7cc57ede
commit 4f9ddb3b5f
6 changed files with 92 additions and 98 deletions

View File

@@ -23,7 +23,7 @@ public interface MultiKeyBinaryRedisPipeline {
Response<Long> msetnx(byte[]... keysvalues);
Response<byte[]> rename(byte[] oldkey, byte[] newkey);
Response<String> rename(byte[] oldkey, byte[] newkey);
Response<Long> renamenx(byte[] oldkey, byte[] newkey);
@@ -43,7 +43,7 @@ public interface MultiKeyBinaryRedisPipeline {
Response<List<byte[]>> sort(byte[] key, byte[] dstkey);
Response<Set<String>> sunion(byte[]... keys);
Response<Set<byte[]>> sunion(byte[]... keys);
Response<Long> sunionstore(byte[] dstkey, byte[]... keys);