Background Jobs

Learn about background jobs and when they should be used in our Rails application.

At a certain scale, the benefits of background jobs outweigh their complexity, and we’d be wise to use them as much as possible. We likely aren’t at that scale now and might never be; thus, we want to be judicious when we use background jobs.

The two main problems that happen ...