Performance: Job creation and queuing
HIGH IMPACT
This affects page load speed and user interaction responsiveness by offloading heavy tasks to background jobs.
def create
UserMailer.welcome_email(@user).deliver_later
render :show
enddef create
UserMailer.welcome_email(@user).deliver_now
render :show
end| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Synchronous job execution | Minimal | Multiple reflows due to blocking | High paint cost due to delayed rendering | [X] Bad |
| Asynchronous job queuing | Minimal | Single reflow | Low paint cost, fast rendering | [OK] Good |