public interface RedisServerCommands
Modifier and Type | Interface and Description |
---|---|
static class |
RedisServerCommands.MigrateOption |
static class |
RedisServerCommands.ShutdownOption |
Modifier and Type | Method and Description |
---|---|
void |
bgReWriteAof()
Start an Append Only File rewrite process on server.
|
void |
bgSave()
Start background saving of db on server.
|
void |
bgWriteAof()
Deprecated.
As of 1.3, use
bgReWriteAof() . |
Long |
dbSize()
Get the total number of available keys in currently selected database.
|
void |
flushAll()
Delete all all keys from all databases.
|
void |
flushDb()
Delete all keys of the currently selected database.
|
List<RedisClientInfo> |
getClientList()
Request information and statistics about connected clients.
|
String |
getClientName()
Returns the name of the current connection.
|
List<String> |
getConfig(String pattern)
Load configuration parameters for given
pattern from server. |
Properties |
info()
Load default server information like
mempory
cpu utilization
replication
See http://redis.io/commands/info
|
Properties |
info(String section)
Load server information for given
selection . |
void |
killClient(String host,
int port)
Closes a given client connection identified by host:port.
|
Long |
lastSave()
Get time of last
bgSave() operation in seconds. |
void |
migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option) |
void |
migrate(byte[] key,
RedisNode target,
int dbIndex,
RedisServerCommands.MigrateOption option,
long timeout) |
void |
resetConfigStats()
Reset statistic counters on server.
|
void |
save()
Synchronous save current db snapshot on server.
|
void |
setClientName(byte[] name)
Assign given name to current connection.
|
void |
setConfig(String param,
String value)
Set server configuration for
param to value . |
void |
shutdown()
Shutdown server.
|
void |
shutdown(RedisServerCommands.ShutdownOption option)
Shutdown server.
|
void |
slaveOf(String host,
int port)
Change redis replication setting to new master.
|
void |
slaveOfNoOne()
Change server into master.
|
Long |
time()
Request server timestamp using
TIME command. |
@Deprecated void bgWriteAof()
bgReWriteAof()
.See http://redis.io/commands/bgrewriteaof
void bgReWriteAof()
See http://redis.io/commands/bgrewriteaof
void bgSave()
See http://redis.io/commands/bgsave
Long lastSave()
bgSave()
operation in seconds.
See http://redis.io/commands/lastsave
void save()
See http://redis.io/commands/save
Long dbSize()
See http://redis.io/commands/dbsize
void flushDb()
See http://redis.io/commands/flushdb
void flushAll()
See http://redis.io/commands/flushall
Properties info()
See http://redis.io/commands/info
Properties info(String section)
selection
.
See http://redis.io/commands/info
void shutdown()
See http://redis.io/commands/shutdown
void shutdown(RedisServerCommands.ShutdownOption option)
See http://redis.io/commands/shutdown
List<String> getConfig(String pattern)
pattern
from server.
See http://redis.io/commands/config-get
pattern
- void setConfig(String param, String value)
param
to value
.
See http://redis.io/commands/config-set
param
- value
- void resetConfigStats()
info()
.
See http://redis.io/commands/config-resetstat
Long time()
TIME
command.void killClient(String host, int port)
host
- of connection to close.port
- of connection to closevoid setClientName(byte[] name)
name
- String getClientName()
See http://redis.io/commands/client-getname
List<RedisClientInfo> getClientList()
See http://redis.io/commands/client-list
List
of RedisClientInfo
objects.void slaveOf(String host, int port)
See http://redis.io/commands/slaveof
host
- port
- void slaveOfNoOne()
See http://redis.io/commands/slaveof
void migrate(byte[] key, RedisNode target, int dbIndex, RedisServerCommands.MigrateOption option)
key
- must not be null.target
- must not be null.dbIndex
- option
- can be null. Defaulted to RedisServerCommands.MigrateOption.COPY
.void migrate(byte[] key, RedisNode target, int dbIndex, RedisServerCommands.MigrateOption option, long timeout)
key
- must not be null.target
- must not be null.dbIndex
- option
- can be null. Defaulted to RedisServerCommands.MigrateOption.COPY
.timeout
- Copyright © 2011-2016–2016 Pivotal Software, Inc.. All rights reserved.