sendCommand method
send command to connection
Implementation
Future<dynamic> sendCommand(List<String> commandList) async {
if (connection.isBusy == false || redisClientType != RedisType.normal) {
return connection.sendCommand(commandList);
}
return pool.sendCommand(commandList);
}