Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
redis.clients.jedis.commands.HashPipelineCommands Maven / Gradle / Ivy
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.args.ExpiryOption;
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> hgetAll(String key);
Response hrandfield(String key);
Response> hrandfield(String key, long count);
Response>> hrandfieldWithValues(String key, long count);
default Response>> hscan(String key, String cursor) {
return hscan(key, cursor, new ScanParams());
}
Response>> hscan(String key, String cursor, ScanParams params);
default Response> hscanNoValues(String key, String cursor) {
return hscanNoValues(key, cursor, new ScanParams());
}
Response> hscanNoValues(String key, String cursor, ScanParams params);
Response hstrlen(String key, String field);
Response> hexpire(String key, long seconds, String... fields);
Response> hexpire(String key, long seconds, ExpiryOption condition, String... fields);
Response> hpexpire(String key, long milliseconds, String... fields);
Response> hpexpire(String key, long milliseconds, ExpiryOption condition, String... fields);
Response> hexpireAt(String key, long unixTimeSeconds, String... fields);
Response> hexpireAt(String key, long unixTimeSeconds, ExpiryOption condition, String... fields);
Response> hpexpireAt(String key, long unixTimeMillis, String... fields);
Response> hpexpireAt(String key, long unixTimeMillis, ExpiryOption condition, String... fields);
Response> hexpireTime(String key, String... fields);
Response> hpexpireTime(String key, String... fields);
Response> httl(String key, String... fields);
Response> hpttl(String key, String... fields);
Response> hpersist(String key, String... fields);
}