public interface ConfigCommands
Modifier and Type | Method and Description |
---|---|
List<byte[]> |
configGet(byte[]... patterns)
Used to read the configuration parameters of Redis server.
|
List<byte[]> |
configGet(byte[] pattern)
Used to read the configuration parameters of Redis server.
|
List<String> |
configGet(String... patterns)
Used to read the configuration parameters of Redis server.
|
List<String> |
configGet(String pattern)
Used to read the configuration parameters of Redis server.
|
String |
configResetStat()
Resets the statistics reported by Redis using the INFO command.
|
String |
configRewrite()
Rewrites the redis.conf file the server was started with, applying
the minimal changes needed to make it reflect the configuration
currently used by the server, which may be different compared to the
original one because of the use of the CONFIG SET command.
|
String |
configSet(byte[]... parameterValues) |
String |
configSet(byte[] parameter,
byte[] value)
Used in order to reconfigure the Redis server at run time without
the need to restart.
|
String |
configSet(String... parameterValues) |
String |
configSet(String parameter,
String value)
Used in order to reconfigure the Redis server at run time without
the need to restart.
|
List<String> configGet(String pattern)
pattern
- name of Redis server's configurationList<String> configGet(String... patterns)
patterns
- names of Redis server's configurationList<byte[]> configGet(byte[] pattern)
pattern
- name of Redis server's configurationList<byte[]> configGet(byte[]... patterns)
patterns
- names of Redis server's configurationString configSet(String parameter, String value)
parameter
- name of Redis server's configurationvalue
- value of Redis server's configurationString configSet(byte[] parameter, byte[] value)
parameter
- name of Redis server's configurationvalue
- value of Redis server's configurationString configSet(byte[]... parameterValues)
String configResetStat()
These are the counters that are reset:
1) Keyspace hits 2) Keyspace misses 3) Number of commands processed 4) Number of connections received 5) Number of expired keys 6) Number of rejected connections 7) Latest fork(2) time 8) The aof_delayed_fsync counter
String configRewrite()
Copyright © 2022. All rights reserved.