Is there a way to check how many current connections there are to the Redis database?
const redis = require('redis');
var client = redis.createClient(port, host);
client.on('connect', () => {
//Display how many current connections are to Redis
console.log( numberOfRedisClients );
});