Reputation: 707
is there any message queue(MSMQ,RabbitMQ and so on..) with ruby bindings avalible that supports offline clients - by offline clients I mean that if i have a client submitting messages to the server,and it is unreachable,the client will hold the messages in an internal queue untill it gets connected again.
Is there some open source solution for that? It seems that rabbitMQ does not do this,i might be wrong tho.
Any help would be appriciated.
Upvotes: 1
Views: 1879
Reputation: 834
You can do this with RabbitMQ if you are prepared to stick a broker on each machine, and then have them connect to your central broker with the shovel. Each machine then queues locally when offline. It's more hassle to run though.
Upvotes: 2