RabbitMQ - Performance Tuning
You wrote this code to batch publish messages but no messages appear in the queue:
channel.txSelect() channel.basic_publish(exchange='', routing_key='queue', body='Hello') channel.basic_publish(exchange='', routing_key='queue', body='World')What is the likely problem?
