Performance: Sidekiq adapter setup
MEDIUM IMPACT
This affects background job processing speed and how quickly the UI remains responsive by offloading work.
config.active_job.queue_adapter = :sidekiq
config.active_job.queue_adapter = :inline
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Inline job adapter | N/A (server-side) | Blocks server response delaying DOM update | Delays initial paint and interaction | [X] Bad |
| Sidekiq adapter | N/A (server-side) | Non-blocking server response | Faster paint and interaction readiness | [OK] Good |