
redis.clients.jedis.bloom.commands.TDigestSketchPipelineCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jedis Show documentation
Show all versions of jedis Show documentation
Jedis is a blazingly small and sane Redis java client.
package redis.clients.jedis.bloom.commands;
import java.util.List;
import java.util.Map;
import redis.clients.jedis.Response;
import redis.clients.jedis.bloom.TDigestMergeParams;
public interface TDigestSketchPipelineCommands {
Response tdigestCreate(String key);
Response tdigestCreate(String key, int compression);
Response tdigestReset(String key);
Response tdigestMerge(String destinationKey, String... sourceKeys);
Response tdigestMerge(TDigestMergeParams mergeParams, String destinationKey, String... sourceKeys);
Response
© 2015 - 2025 Weber Informatics LLC | Privacy Policy