Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sidekiq VS. RabbitMQ

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 over RabbitMQ?

like image 306
amitben Avatar asked Dec 30 '15 08:12

amitben


1 Answers

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.

like image 128
Vlad Avatar answered Sep 18 '22 15:09

Vlad