
redis.clients.jedis.commands.HashPipelineCommands 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.commands;
import java.util.List;
import java.util.Map;
import java.util.Set;
import redis.clients.jedis.Response;
import redis.clients.jedis.params.ScanParams;
import redis.clients.jedis.resps.ScanResult;
public interface HashPipelineCommands {
Response hset(String key, String field, String value);
Response hset(String key, Map hash);
Response hget(String key, String field);
Response hsetnx(String key, String field, String value);
Response hmset(String key, Map hash);
Response> hmget(String key, String... fields);
Response hincrBy(String key, String field, long value);
Response hincrByFloat(String key, String field, double value);
Response hexists(String key, String field);
Response hdel(String key, String... field);
Response hlen(String key);
Response> hkeys(String key);
Response> hvals(String key);
Response
© 2015 - 2025 Weber Informatics LLC | Privacy Policy