Package redis.clients.jedis.commands
Interface HashPipelineBinaryCommands
- All Known Subinterfaces:
PipelineBinaryCommands
- All Known Implementing Classes:
ClusterPipeline,MultiNodePipelineBase,Pipeline,ReliableTransaction,ShardedPipeline,Transaction,TransactionBase
public interface HashPipelineBinaryCommands
-
Method Summary
Modifier and TypeMethodDescriptionhdel(byte[] key, byte[]... field) hexists(byte[] key, byte[] field) Response<byte[]> hget(byte[] key, byte[] field) hgetAll(byte[] key) hincrBy(byte[] key, byte[] field, long value) hincrByFloat(byte[] key, byte[] field, double value) hkeys(byte[] key) hlen(byte[] key) hmget(byte[] key, byte[]... fields) Response<byte[]> hrandfield(byte[] key) hrandfield(byte[] key, long count) hrandfieldWithValues(byte[] key, long count) default Response<ScanResult<Map.Entry<byte[], byte[]>>> hscan(byte[] key, byte[] cursor) Response<ScanResult<Map.Entry<byte[], byte[]>>> hscan(byte[] key, byte[] cursor, ScanParams params) hset(byte[] key, byte[] field, byte[] value) hsetnx(byte[] key, byte[] field, byte[] value) hstrlen(byte[] key, byte[] field) hvals(byte[] key)
-
Method Details
-
hset
-
hset
-
hget
-
hsetnx
-
hmset
-
hmget
-
hincrBy
-
hincrByFloat
-
hexists
-
hdel
-
hlen
-
hkeys
-
hvals
-
hgetAll
-
hrandfield
-
hrandfield
-
hrandfieldWithValues
-
hscan
-
hscan
-
hstrlen
-