How many total connections are or max how many connections are present in redis ?
How many connections are busy ?
How many connections are free waiting for the requests ?
which commands or configuration i need see to answer above questions ?
Am asking total / max connections not clients
Clients ARE connections. Redis doesn't know if two connections are from the same client.
Current
Maximum
If you want to change maxclients, you may do so in conf file, or at runtime with the command
config set maxclients <val>
, but note that this value is limited by available file descriptors, so run appropriateulimit -n <val>
before.