AlbertMorenoDEV / simple-mq

Very simple message queue system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple MQ

Publish a message

curl --header "Content-Type: application/json" \
  --request POST \
  --data '{"id":"1","type":"test","data":"hello"}' \
  http://localhost:8001/

Get a message

curl http://localhost:8002/

Tools

Changelog

v0.1

  • HTTP Publisher with a single message
  • HTTP Subscriber

ToDo

  • Persist queue items
  • Multiple subscribers delivery
  • Multiple queue
  • Socket publisher
  • Socket subscriber

About

Very simple message queue system

License:MIT License


Languages

Language:Go 100.0%