#Getting Started run simple-broker with docker
docker run hub.tisserv.net/tislib/simple-broker -p 8712:8712
Producer:
send message to topic named queue-1 curl -XPOST "https://127.0.0.1:8712/queue-1"
Consumer:
curl "https://127.0.0.1:8712/queue-1"
Consumer group (like kafka consumer groups)
curl -H "Accept-Group: group1" "https://127.0.0.1:8712/queue-1"
Topic Design notes:link Topic Design notes:link
curl "https://localhost:1678/users" --insecure
curl "https://localhost:1678/users/15/orders" --insecure
curl -XPOST --data '{"data": 124}' "https://localhost:1678/users/15/orders" --insecure