Top "Message-queue" questions

"Message queue" is a design pattern or software engineering component that defines discipline or API for communication between two or more interrelated processes or systems.

Resubmitting a message from dead letter queue - Azure Service Bus

I have created a service bus queue in Azure and it works well. And if the message is not getting …

azure message-queue azureservicebus
Message Queue vs Task Queue difference

I wonder what is the difference between them. Are they describing the same thing? Is Google App Engine Service Task …

google-app-engine message-queue
Laravel Queue, Beanstalkd vs Database, what are the differences?

Is there much difference between using Beanstalkd and a database driver for queues? What would some pros and cons be? …

database laravel laravel-5 message-queue beanstalkd
How to copy messages to another queue on RabbitMQ?

Using RabbitMQ as broker, I would like to copy all the messages from one queue to another queue for test/…

rabbitmq message-queue amqp rabbitmqctl
Node JS workers - any need for them?

Forgive my ignorance, but coming from a Django/Python background I can see the huge benefit of having a Celery …

node.js message-queue
JMS performance

I'm having a bit of trouble with understanding JMS from a performance perspective. We have this very straightforward code in …

java jms weblogic message-queue
Sidekiq: Ensure all jobs on the queue are unique

I have some update triggers which push jobs onto the Sidekiq queue. So in some cases, there can be multiple …

ruby-on-rails ruby message-queue sidekiq
is latency and throughput in AWS SNS good enough to replace dedicated MQ for pub/sub?

For a sake of HA I'm considering switching from self hosted solution (ZeroMQ) to AWS Simple Notification Service for pub/…

amazon-web-services message-queue publish-subscribe zeromq
Dynamically creating asynchronous message queues in Java

I need to create asynchronous message queues dynamically in Java. My use case is sending email via multiple SMTP servers: …

java asynchronous jms message-queue jboss-mdb
Inter-process event emitter for Node.js?

At the moment, I am using EventEmitter2 as a message bus inside my application, and I really like it. Anyway, …

node.js ipc message-queue interprocess