Add Binary Pipeline version of pfcount
This commit is contained in:
@@ -67,4 +67,6 @@ public interface MultiKeyBinaryRedisPipeline {
|
|||||||
Response<Long> bitop(BitOP op, final byte[] destKey, byte[]... srcKeys);
|
Response<Long> bitop(BitOP op, final byte[] destKey, byte[]... srcKeys);
|
||||||
|
|
||||||
Response<String> pfmerge(final byte[] destkey, final byte[]... sourcekeys);
|
Response<String> pfmerge(final byte[] destkey, final byte[]... sourcekeys);
|
||||||
|
|
||||||
|
Response<Long> pfcount(final byte[] ... keys);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -464,4 +464,10 @@ abstract class MultiKeyPipelineBase extends PipelineBase implements
|
|||||||
client.pfcount(keys);
|
client.pfcount(keys);
|
||||||
return getResponse(BuilderFactory.LONG);
|
return getResponse(BuilderFactory.LONG);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Response<Long> pfcount(final byte[] ... keys) {
|
||||||
|
client.pfcount(keys);
|
||||||
|
return getResponse(BuilderFactory.LONG);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user