In this section, I am going to show how to see configuration as well as how to set the configuration of the Redis server.
The syntax for getting configuration:
CONFIG GET setting_name
Example:
CONFIG GET loglevel
See all available settings:
CONFIG GET *
Set Configurations Setting:
Syntax:
CONFIG SET setting_name value
Example:
CONFIG SET loglevel "notice"