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 QUIT command to stop a stream running via .

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

    Benchmark result without running:

    Benchmark result withMONITOR running ():

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