What is ActiveMQ used for?

2019-03-07 21:01发布

I looked it up and you send messages to it. But why? Why wouldnt you use a database? There must be feature ActiveMQ has that databases dont?

标签: activemq
7条回答
【Aperson】
2楼-- · 2019-03-07 21:31

Suppose you have an application which is being used at multiple locations at the same time. Also suppose your application has to handle 1000s of request per minute or something like that so normal db operations cannot handle such operations, Activemq acts as the message processing it takes all the messages into queue , so even if one of your application crashes at one location the other location won't be affected.

查看更多
登录 后发表回答