https://github.com/gmarcial/amqppool
A simple amqp channel pool
https://github.com/gmarcial/amqppool
amqp amqp-pool golang library queue rabbitmq rabbitmq-client
Last synced: 11 months ago
JSON representation
A simple amqp channel pool
- Host: GitHub
- URL: https://github.com/gmarcial/amqppool
- Owner: gmarcial
- License: mit
- Created: 2020-06-16T19:57:26.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-06-17T02:49:51.000Z (about 6 years ago)
- Last Synced: 2025-01-15T19:43:53.405Z (over 1 year ago)
- Topics: amqp, amqp-pool, golang, library, queue, rabbitmq, rabbitmq-client
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AMQP Pool
A simple amqp channel pool made from of go client [streadway/amqp](https://github.com/streadway/amqp).
### WARNING: Immature, don't was tested them enough in production.
## Install
go get github.com/gmarcial/amqp-pool
## Usage
- [Example](./example/main.go)
## Test
Configure an instance of rabbitmq on your machine, export the connection string how environment variable and run the tests:
export AMQP_CONNECTION=amqp://guest:guest@127.0.0.1:5672/
go test ./...