本文介绍了Sidekiq VS.兔MQ的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我们的 Ruby On Rails 4 Web 应用程序需要一个排队系统
We are in need of a queuing system in our Ruby On Rails 4 web application
有什么区别,为什么选择/不选择
what are the differences and why would/wouldn't you pick
Sidekiq 优于 RabbitMQ 吗?
推荐答案
用不同的用法是完全不同的东西.Sidekiq 是用于作业排队和处理的全功能解决方案,而 RabbitMQ 只是一个消息代理,您可以在其中构建自己的东西.
It's quite different things with different usage. Sidekiq is full-featured solution for job queueing and processing, while RabbitMQ is just a message broker where you can build your own stuff upon it.
这篇关于Sidekiq VS.兔MQ的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!