RabbitMQ - Performance Tuning
Given this Python pika code snippet, what is the expected effect on throughput?
channel.confirm_delivery()
for i in range(1000):
channel.basic_publish(exchange='', routing_key='task_queue', body=f'Message {i}')
