Surbhi Gargsurbhi-blogs.hashnode.net·Oct 25, 2022Scaling journey - from 16k to 160k users.In my previous article, I explained how we are using a queue-based application that uses sidekiq for the management of queues. We were able to process jobs in the background using this architecture but with growing requests, it was difficult to proce...Discuss·3 likes·203 readsRuby on Rails
Shakuroshakuro.hashnode.net·Feb 20, 2023Sidekiq Tutorial & Overview: Is Sidekiq For Ruby Still Worth Working With After 10 Years?Sherlock Holmes needs Dr. Watson. Ruby programming needs Sidekiq. Or Delayed_job, or Resque? Sometimes our clients are interested in what technologies we are using to build their web application projects. We are happy to share, although it’s not easy...Discuss·2 likesRuby on Rails
Evan BrearleyforWonolo Engineeringwonoloengineering.hashnode.net·Nov 1, 2022Common Pitfalls While Using SidekiqSidekiq is one of the most commonly used libraries with Ruby on Rails, allowing for code to be executed independently from requests made to an application. It handles a lot of the complexities of managing defined background jobs, with built in logic ...Discuss·1 like·301 readssidekiqpro
Piotr Rogozińskirogodev.hashnode.net·Apr 22, 2023Sidekiq jobs in ActiveRecord transactionsLet's take a look at the following code: def create_event ActiveRecord::Base.transaction do event = Event.create(name: "Cool event") EventNotificationWorker.perform_async(event.id) end end Pretty straightforward - we create a new event a...Discuss·194 readssidekiq
Shakuroshakuro.hashnode.net·Feb 20, 2023Sidekiq Tutorial & Overview: Is Sidekiq For Ruby Still Worth Working With After 10 Years?Sherlock Holmes needs Dr. Watson. Ruby programming needs Sidekiq. Or Delayed_job, or Resque? Sometimes our clients are interested in what technologies we are using to build their web application projects. We are happy to share, although it’s not easy...Discuss·2 likesRuby on Rails
Evan BrearleyforWonolo Engineeringwonoloengineering.hashnode.net·Nov 1, 2022Common Pitfalls While Using SidekiqSidekiq is one of the most commonly used libraries with Ruby on Rails, allowing for code to be executed independently from requests made to an application. It handles a lot of the complexities of managing defined background jobs, with built in logic ...Discuss·1 like·301 readssidekiqpro
Surbhi Gargsurbhi-blogs.hashnode.net·Oct 25, 2022Scaling journey - from 16k to 160k users.In my previous article, I explained how we are using a queue-based application that uses sidekiq for the management of queues. We were able to process jobs in the background using this architecture but with growing requests, it was difficult to proce...Discuss·3 likes·203 readsRuby on Rails