Using Oban in a rails app

In my current workplace, we have a separate server for sidekiq (background job processing tool). So, I was thinking would it be possible to replace it with oban.

PS: I have not put much thought into it, it just came to my mind and I wanted to ask.

What’s wrong with sidekiq?

I assume he’s trying to have Elixir run the jobs.

2 Likes

totally possible - just insert the jobs into the db from rails - and oban will pick them up…

You’ll want to use Oban 2 - currently in rc3 - so check that the db table is still the same for above code…

5 Likes

That’s exactly what I suggest, and kind of what we did to migrate.

The table is identical, it hasn’t changed.

4 Likes

nothing. it works amazing but i want to reduce redis as a dependency :slight_smile:

2 Likes