RabbitMQ - Performance Tuning
Given the following Python code snippet using pika:
import pika connection = pika.BlockingConnection(pika.ConnectionParameters()) channel1 = connection.channel() channel2 = connection.channel() print(channel1.is_open, channel2.is_open) channel1.close() print(channel1.is_open, channel2.is_open)What will be the output?
