Add support for pfcount with multiple keys

This commit is contained in:
Alok Singh
2014-04-28 14:17:46 -07:00
parent 986acc8c9e
commit cd722e5a82
7 changed files with 82 additions and 33 deletions

View File

@@ -244,4 +244,6 @@ public interface JedisCommands {
Long pfadd(final String key, final String... elements);
long pfcount(final String key);
long pfcount(final String...keys);
}