DEV Community

Discussion on: AMQP vs HTTP

Collapse
 
wrschneider profile image
Bill Schneider

For me the determining factor is whether you need some kind of broadcast or routing to multiple subscribers. If it's point-to-point, HTTP will be much simpler to work with, even if async. Use AMQP when you would otherwise reinvent features like tracking subscribers, topic- or header-based routing, etc.