Reputation: 85
With no other programs running that might create a Redis client, there is only one client when I list them in the terminal:
127.0.0.1:6379> client list
id=152 addr=127.0.0.1:58515 laddr=127.0.0.1:6379
When I open Redis Insight (v2) and click the default localhost database on port 6379, the number of clients listed in my terminal increases to 3:
127.0.0.1:6379> client list
id=152 addr=127.0.0.1:58515 laddr=127.0.0.1:6379
id=153 addr=127.0.0.1:58675 laddr=127.0.0.1:6379
id=154 addr=127.0.0.1:58680 laddr=127.0.0.1:6379
I truncated the console output to make it easier to read.
I am new to redis in general and I am using it to build a node.js app. I would like to understand what is going on behind the scenes with these additional connections. It does not affect my node app.
Upvotes: 2
Views: 853
Reputation: 196
RedisInsight V2 creates the following clients:
hope this helps
Upvotes: 3