-
Updated
Jul 1, 2020 - Ruby
sidekiq
Here are 238 public repositories matching this topic...
I ran into a situation where there was a stupid mistake in one of our cron and we didn't notice it.
I believe we do parse crons already in app to queue jobs in time. So why not complain if some crons contain errors, i.e are not parse-able. I believe they are silently ignore as of now.
If i can get some guidance i will be happy to contribute this. We may add a configuration to raise exception
Something like #disable_all! will be useful for development environment, so you don't need to modify each worker to add a guard.
Is your feature request related to a problem? Please describe.
We just came across this project—it looks awesome! Thanks so much. We're hoping to use something like until_and_while_executing to prevent duplicate jobs from running or getting enqueued too many times, but we're worried about jobs hanging when they get picked up.
Describe the solution you'd like
I think the behavior
-
Updated
Jul 6, 2020 - Ruby
-
Updated
Oct 4, 2017 - Ruby
-
Updated
Jun 24, 2020 - Ruby
-
Updated
Jul 7, 2020 - Ruby
-
Updated
Jun 27, 2020 - Ruby
-
Updated
May 7, 2015 - Ruby
-
Updated
Sep 13, 2018 - Ruby
-
Updated
Oct 16, 2019 - Ruby
-
Updated
Jun 30, 2020 - Ruby
-
Updated
Jun 17, 2020 - Ruby
We should just throw an argument error if no block is provided to on_event.
Small but important quality of life thing for teams of any post-market-fit size.
-
Updated
Jun 25, 2020 - Ruby
-
Updated
Aug 29, 2018 - Ruby
Improve this page
Add a description, image, and links to the sidekiq topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the sidekiq topic, visit your repo's landing page and select "manage topics."


Let's say, for example, we are allowing users to rate songs and artists. I would like to be able to get a single, ordered list of recommendations for a user that includes both songs and artists based on the likelihood that the user will like it, regardless of its class.
I would be willing to build the list myself by calling
recommended_songsandrecommended_artistsand merging the lists if I