All Downloads are FREE. Search and download functionalities are using the official Maven repository.

redis.clients.jedis.commands.HyperLogLogCommands Maven / Gradle / Ivy

The newest version!
package redis.clients.jedis.commands;

public interface HyperLogLogCommands {

  long pfadd(String key, String... elements);

  String pfmerge(String destkey, String... sourcekeys);

  long pfcount(String key);

  long pfcount(String... keys);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy