Apply PF* commands to JedisCluster, ShardedJedis

* Apply PF* commands to JedisCluster, ShardedJedis
* PF* commands to interface
** pfadd / pfcount : JedisCommands
** pfmerge : MultiKeyCommands
This commit is contained in:
Jungtaek Lim
2014-04-05 22:19:11 +09:00
parent a6b76ae665
commit 1345b5c1da
5 changed files with 42 additions and 1 deletions

View File

@@ -79,4 +79,6 @@ public interface MultiKeyCommands {
ScanResult<String> scan(int cursor);
ScanResult<String> scan(final String cursor);
String pfmerge(final String destkey, final String... sourcekeys);
}