RabbitMQ - Performance Tuning
Given the following Python code snippet using pika library, what will be the output or result?
channel.txSelect()
for i in range(3):
channel.basic_publish(exchange='', routing_key='queue', body=f'Msg {i}')
channel.txCommit()
print('Batch sent')