This example demonstrates a simple producer-consumer pattern using RabbitMQ in Go.
- Go 1.22 or later
- RabbitMQ server
- Clone the repository:
git clone https://github.com/appleboy/golang-queue.git
cd golang-queue/rabbitmq/_example/producer-consumer
- Install dependencies:
go mod tidy
Ensure RabbitMQ server is running. You can start RabbitMQ using Docker:
docker run -d --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3-management
The producer sends messages to the RabbitMQ queue.
- Navigate to the producer directory:
cd producer
- Run the producer:
go run main.go
The consumer receives messages from the RabbitMQ queue.
- Navigate to the consumer directory:
cd consumer
- Run the consumer:
go run main.go