fix - pipeline sort

This commit is contained in:
mindwind
2013-07-08 16:26:13 +08:00
parent d57bfb94a9
commit fffd119c63
3 changed files with 12 additions and 12 deletions

View File

@@ -39,9 +39,9 @@ public interface MultiKeyBinaryRedisPipeline {
Response<Long> smove(byte[] srckey, byte[] dstkey, byte[] member);
Response<List<byte[]>> sort(byte[] key, SortingParams sortingParameters, byte[] dstkey);
Response<Long> sort(byte[] key, SortingParams sortingParameters, byte[] dstkey);
Response<List<byte[]>> sort(byte[] key, byte[] dstkey);
Response<Long> sort(byte[] key, byte[] dstkey);
Response<Set<byte[]>> sunion(byte[]... keys);