RabbitMQ Simple Queue용어 정리Producing메세지를 큐에 보낸다.Queue우편통처럼 메세지를 저장해놓는 장소Consuming큐를 통해 메시지를 받는다.Hello World!Sending#!/usr/bin/env python import pika connection = pika.BlockingConnection(pika.ConnectionParameters('localhost'))channel = connection.channel()connection과 channel를 생성channel.queue_declare(queue='hello')channel를 통해 queue 선언(declare) 한다.channel.basic_publish(exchange='', routing_key='hell..