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: Get list of connections through JMX?
- Batch consuming of JMS messages
- ActiveMQ gives: “Could not connect to broker URL:
- ActiveMQ - sending message to specific consumer
- Publishing messages to ActiveMQ using Gatling
相关文章
- Connecting Unity3d Android application to ActiveMQ
- ActiveMQ - is it possible to acknowledge single me
- ActiveMQ: starting consumer without broker
- How to get all enqueued messages in ActiveMQ?
- ActiveMQ - Removing queues programmatically
- How to set ActiveMQ port in Spring Boot?
- Spring Boot - start ActiveMQ Web Console on startu
- How can I pull messages from Activemq Asynchronous
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.