Delay API calls to Twilio with Rails, Active Job and Sidekiq
Performing long running, blocking tasks during the course of a request is a top way to slow down responses for any web application. Things like HTTP requests to 3rd party APIs can tie up processes. We’ll see how to improve the situation using Active Job and Sidekiq to delay API calls and speed up our Rails application.
Post a comment