SideKiq for multiple domains

0

I have a production server that will contain multiple clients, and I want to add the sidekiq to manage the image processing queues. However, I do not know how it behaves for multiple domains, that is, does each system have a queue, or will all systems compete for a particular queue?

    
asked by anonymous 14.10.2014 / 22:11

1 answer

1

You have 2 options.

Use the same redis, using a queue for each app

link

Or use a redis for each app (obviously running on a different port).

I work with 1 case, but this way, within the sidekiq admin of all apps you will see all queues, if that is a problem use a redis for each.

    
15.10.2014 / 15:21