While executing the “Client List” i get the below result,whats the meaning of the each flag
Slave
addr=100.0.0.0:0000 fd=5 idle=3 flags=S db=0 sub=0 psub=0 qbuf=0 obl=0 oll=0 events=r cmd=sync
Master
addr=100.0.0.0:0000 fd=6 idle=0 flags=N db=0 sub=0 psub=0 qbuf=0 obl=0 oll=0 events=r cmd=client
With client list, Redis prints one row per connected client.
From the redis.h and networking.c files of Redis source code:
The client flags can be a combination of:
The file descriptor events can be:
It is my interpretation, please take it with a grain of salt.