redis and server | Mar 11, 2016
Delete all the keys of all the existing databases, not just the currently selected one. This command never fails.
More »redis and server | Mar 11, 2016
DEBUG SEGFAULT
performs an invalid memory access that crashes Redis.
It is used to simulate bugs during the development.
redis and server | Mar 11, 2016
DEBUG OBJECT
is a debugging command that should not be used by clients.
Check the OBJECT
command instead.
redis and server | Mar 11, 2016
Return the number of keys in the currently-selected database.
More »redis and server | Mar 11, 2016
The CONFIG SET
command is used in order to reconfigure the server at run time
without the need to restart Redis.
You can change both trivial parameters or switch from one to another persistence
option using this command.
redis and server | Mar 11, 2016
The CONFIG REWRITE
command rewrites the redis.conf
file the server was started with, applying the minimal changes needed to make it reflecting the configuration currently used by the server, that may be different compared to the original one because of the use of the CONFIG SET
command.