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