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 booleanRedisConnection. hmset(String key, KeyValue<String,Object>... pairs)LikeRedisConnection.hmset(String, String, String, String...), except abstracted asKeyValues of key-value pairs.voidRedisPipeline. hmset(String key, KeyValue<String,Object>... pairs)booleanRedisConnection. mset(KeyValue<String,Object>... pairs)voidRedisPipeline. mset(KeyValue<String,Object>... pairs)booleanRedisConnection. msetnx(KeyValue<String,Object>... pairs)voidRedisPipeline. msetnx(KeyValue<String,Object>... pairs)longRedisConnection. zadd(String key, KeyValue<Double,String>... pairs)voidRedisPipeline. 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 booleanRedisConnectionCommands. hmset(String key, KeyValue<String,Object>... pairs)booleanRedisConnectionCommands. mset(KeyValue<String,Object>... pairs)LikeRedisConnectionCommands.mset(String, String, String...), but takes key-value pairs.voidRedisDeferredCommands. mset(KeyValue<String,Object>... pairs)LikeRedisDeferredCommands.mset(String, String, String...), but takes key-value pairs.booleanRedisConnectionCommands. msetnx(KeyValue<String,Object>... pairs)LikeRedisConnectionCommands.msetnx(String, String, String...), but takes key-value pairs.voidRedisDeferredCommands. msetnx(KeyValue<String,Object>... pairs)LikeRedisDeferredCommands.msetnx(String, String, String...), but takes key-value pairs.longRedisConnectionCommands. zadd(String key, KeyValue<Double,String>... pairs)voidRedisDeferredCommands. 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. STRINGPAIRSTRINGPAIR return type. 
 -