MONITOR

    MONITOR is a debugging command that streams back every command processed by the Redis server. It can help in understanding what is happening to the database. This command can both be used via and via telnet.

    The ability to see all the requests processed by the server is useful in order to spot bugs in an application both when using Redis as a database and as a distributed caching system.

    Manually issue the command to stop a MONITOR stream running via .

    For security concerns, certain special administration commands like CONFIG are not logged into the output.

    Benchmark result withoutMONITOR running:

    Benchmark result with running ():

    Non standard return value, just dumps the received commands in an infinite flow.