var manager = new PooledRedisClientManager(redisHost);
manager.FlushAll(); //--> doesn't work, need to supply password first
using (IRedisClient redisClient = manager.GetClient())
{
redisClient.Password = redisPasswd;
redisClient.FlushAll(); // ---> work good since we supply password
}
var redisHost = "password@host:port";