I used Sidekiq as our worker because it's like Resque but uses threads instead of processes so the memory usage is lower. However, memory is our smallest resource and I am not sure if we can handle Sidekiq.
We will have to benchmark the whole package and if it doesn't hold, we can easily switch to DelayedJob.
I used Sidekiq as our worker because it's like Resque but uses threads instead of processes so the memory usage is lower. However, memory is our smallest resource and I am not sure if we can handle Sidekiq.
We will have to benchmark the whole package and if it doesn't hold, we can easily switch to DelayedJob.