| Package | Description |
|---|---|
| redis.client |
| Modifier and Type | Method and Description |
|---|---|
BulkReply |
RedisClient.dump(java.lang.Object key0)
Return a serialized version of the value stored at the specified key.
|
BulkReply |
RedisClient.echo(java.lang.Object message0)
Echo the given string
Connection
|
BulkReply |
RedisClient.get(java.lang.Object key0)
Get the value of a key
String
|
BulkReply |
RedisClient.getrange(java.lang.Object key0,
java.lang.Object start1,
java.lang.Object end2)
Get a substring of the string stored at a key
String
|
BulkReply |
RedisClient.getset(java.lang.Object key0,
java.lang.Object value1)
Set the string value of a key and return its old value
String
|
BulkReply |
RedisClient.hget(java.lang.Object key0,
java.lang.Object field1)
Get the value of a hash field
Hash
|
BulkReply |
RedisClient.hincrbyfloat(java.lang.Object key0,
java.lang.Object field1,
java.lang.Object increment2)
Increment the float value of a hash field by the given amount
Hash
|
BulkReply |
RedisClient.incrbyfloat(java.lang.Object key0,
java.lang.Object increment1)
Increment the float value of a key by the given amount
String
|
BulkReply |
RedisClient.info_(java.lang.Object... arguments) |
BulkReply |
RedisClient.info(java.lang.Object section0)
Get information and statistics about the server
Server
|
BulkReply |
RedisClient.lindex(java.lang.Object key0,
java.lang.Object index1)
Get an element from a list by its index
List
|
BulkReply |
RedisClient.lpop(java.lang.Object key0)
Remove and get the first element in a list
List
|
BulkReply |
RedisClient.randomkey()
Return a random key from the keyspace
Generic
|
BulkReply |
RedisClient.rpop(java.lang.Object key0)
Remove and get the last element in a list
List
|
BulkReply |
RedisClient.rpoplpush(java.lang.Object source0,
java.lang.Object destination1)
Remove the last element in a list, append it to another list and return it
List
|
BulkReply |
RedisClient.spop(java.lang.Object key0)
Remove and return a random member from a set
Set
|
BulkReply |
RedisClient.zincrby(java.lang.Object key0,
java.lang.Object increment1,
java.lang.Object member2)
Increment the score of a member in a sorted set
Sorted_set
|
BulkReply |
RedisClient.zscore(java.lang.Object key0,
java.lang.Object member1)
Get the score associated with the given member in a sorted set
Sorted_set
|
| Modifier and Type | Method and Description |
|---|---|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.dump(java.lang.Object key0)
Return a serialized version of the value stored at the specified key.
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.echo(java.lang.Object message0)
Echo the given string
Connection
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.get(java.lang.Object key0)
Get the value of a key
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.getrange(java.lang.Object key0,
java.lang.Object start1,
java.lang.Object end2)
Get a substring of the string stored at a key
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.getset(java.lang.Object key0,
java.lang.Object value1)
Set the string value of a key and return its old value
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.hget(java.lang.Object key0,
java.lang.Object field1)
Get the value of a hash field
Hash
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.hincrbyfloat(java.lang.Object key0,
java.lang.Object field1,
java.lang.Object increment2)
Increment the float value of a hash field by the given amount
Hash
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.incrbyfloat(java.lang.Object key0,
java.lang.Object increment1)
Increment the float value of a key by the given amount
String
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.info_(java.lang.Object... arguments) |
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.info(java.lang.Object section0)
Get information and statistics about the server
Server
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.lindex(java.lang.Object key0,
java.lang.Object index1)
Get an element from a list by its index
List
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.lpop(java.lang.Object key0)
Remove and get the first element in a list
List
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.randomkey()
Return a random key from the keyspace
Generic
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.rpop(java.lang.Object key0)
Remove and get the last element in a list
List
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.rpoplpush(java.lang.Object source0,
java.lang.Object destination1)
Remove the last element in a list, append it to another list and return it
List
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.spop(java.lang.Object key0)
Remove and return a random member from a set
Set
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.zincrby(java.lang.Object key0,
java.lang.Object increment1,
java.lang.Object member2)
Increment the score of a member in a sorted set
Sorted_set
|
com.google.common.util.concurrent.ListenableFuture<BulkReply> |
RedisClient.Pipeline.zscore(java.lang.Object key0,
java.lang.Object member1)
Get the score associated with the given member in a sorted set
Sorted_set
|