Can I have two queues with the same name and same ro开发者_运维问答utingKey yet each bound to another exchange?You can\'t have two queues with the same name at all, (well you can if they\'re in differ
We have a flash application that only communicates with a php backend, which again communicates with mysql and redis. We have few asynchronous tasks, the resul开发者_如何转开发ts are delivered to the
I\'m considering RabbitMQ\'s usefulness for creating a multi-user chat system. People would be able to chat in various rooms, some public and some private, and privately person-to-person. Would it be
Given a cluster of RabbitMQ nodes with a bunch of queues getting messages from a开发者_JAVA技巧 topic exchange, I would like to be able to programmatically answer the question:
I have a scenario where a client sends an http request to download a file. The file needs to be dynamically generated and typically ta开发者_开发技巧kes 5-15 seconds. Therefore I am looking into a sol
Is the开发者_如何学编程re a way to ignore messages that come from yourself in Qpid/AMQP?I\'ve dug around both the documentation and the source for qpid, and can\'t find a flag that lets me ignore them
Does anyone know if the pop operation on a RabbitMQ queue is atomic? I have several processes reading from the same que开发者_如何学Pythonue (the queue is marked as durable, running on version 2.0.0)
I have a scenario where I need to distribute and process jobs extremely quickly.I\'ll have about 45 jobs populated in the queue quickly and I can process about 20 simultaneously (5 machines, 4 cores e
I\'m just starting to research AMQP and I\'m wondering if I\'d be using it for something it\'s not designed for. Here\'s something like what I want to do:
My web app开发者_C百科lication is writing messages to rabbitmq.Example, a user wants to export their data, so I write this message to the queue.The web application is not java based.