Uses of Class
com.blackrook.redis.data.KeyValue
-
Packages that use KeyValue Package Description com.blackrook.redis Contains classes relevant to connecting to Redis servers.com.blackrook.redis.commands Contains interfaces for implementing Redis commands.com.blackrook.redis.enums Contains useful enumerations. -
-
Uses of KeyValue in com.blackrook.redis
Methods in com.blackrook.redis that return KeyValue Modifier and Type Method Description KeyValue<String,String>
RedisConnection. blpop(long timeout, String key, String... keys)
KeyValue<String,Long>
RedisConnection. blpopLong(long timeout, String key, String... keys)
LikeRedisConnection.blpop(long, String, String...)
, except it casts the value to a long integer.KeyValue<String,String>
RedisConnection. brpop(long timeout, String key, String... keys)
KeyValue<String,Long>
RedisConnection. brpopLong(long timeout, String key, String... keys)
LikeRedisConnection.brpop(long, String, String...)
, except it casts the value to a long integer.Methods in com.blackrook.redis with parameters of type KeyValue Modifier and Type Method Description boolean
RedisConnection. hmset(String key, KeyValue<String,Object>... pairs)
LikeRedisConnection.hmset(String, String, String, String...)
, except abstracted asKeyValue
s of key-value pairs.void
RedisPipeline. hmset(String key, KeyValue<String,Object>... pairs)
boolean
RedisConnection. mset(KeyValue<String,Object>... pairs)
void
RedisPipeline. mset(KeyValue<String,Object>... pairs)
boolean
RedisConnection. msetnx(KeyValue<String,Object>... pairs)
void
RedisPipeline. msetnx(KeyValue<String,Object>... pairs)
long
RedisConnection. zadd(String key, KeyValue<Double,String>... pairs)
void
RedisPipeline. zadd(String key, KeyValue<Double,String>... pairs)
-
Uses of KeyValue in com.blackrook.redis.commands
Methods in com.blackrook.redis.commands that return KeyValue Modifier and Type Method Description KeyValue<String,String>
RedisConnectionCommands. blpop(long timeout, String key, String... keys)
KeyValue<String,String>
RedisConnectionCommands. brpop(long timeout, String key, String... keys)
Methods in com.blackrook.redis.commands with parameters of type KeyValue Modifier and Type Method Description boolean
RedisConnectionCommands. hmset(String key, KeyValue<String,Object>... pairs)
boolean
RedisConnectionCommands. mset(KeyValue<String,Object>... pairs)
LikeRedisConnectionCommands.mset(String, String, String...)
, but takes key-value pairs.void
RedisDeferredCommands. mset(KeyValue<String,Object>... pairs)
LikeRedisDeferredCommands.mset(String, String, String...)
, but takes key-value pairs.boolean
RedisConnectionCommands. msetnx(KeyValue<String,Object>... pairs)
LikeRedisConnectionCommands.msetnx(String, String, String...)
, but takes key-value pairs.void
RedisDeferredCommands. msetnx(KeyValue<String,Object>... pairs)
LikeRedisDeferredCommands.msetnx(String, String, String...)
, but takes key-value pairs.long
RedisConnectionCommands. zadd(String key, KeyValue<Double,String>... pairs)
void
RedisDeferredCommands. zadd(String key, KeyValue<Double,String>... pairs)
-
Uses of KeyValue in com.blackrook.redis.enums
Fields in com.blackrook.redis.enums with type parameters of type KeyValue Modifier and Type Field Description static ReturnType<KeyValue<String,String>>
ReturnType. STRINGPAIR
STRINGPAIR return type.
-